I'm developing an Android application which is using Google Maps API v2 and is sharing the map screen through socket connection with another Android device. It
I use a user-defined type (UDT) in Oracle 18c called ST_GEOMETRY: The ST_Geometry storage type ST_Geometry in Oracle SQL functions used with ST_Geometry I have
Im working on an iOS app that is essentially a WKWebView. Every time I trigger the keyboard by tapping on a textField the navigation bar goes away. However on a
I have an array of objects of different types and i want to pick only 1 object from the array and add it up. For example i have an array with 4 users that all h
I have a GraphQL REST service returning a number field as a String. Is it possible to convince .addOrderBy to sort a string field as a number? I can't modify th
I have a dataframe in which one columns values are lists of strings. here the structure of the file to read: [ { "key1":"value1 ", "key2":"2
I am using react-native 0.61.5. For all the previous versions of my App, everything worked fine: I was running expo publish and then archiving the App on Xcode
I am new in Flutter. I want to change the icon returned by navigation. Screen1 Code: Navigator.push( context, MaterialPageRoute( builder: (context) =>
For example, i have: [a1, a2, a3] [b1, b2] [c1] And how can i get the following result by using hive sql? a1,b1,c1 a1,b2,c1 a2,b1,c1 a2,b2,c1 a3,b1,c1 a3,