Issue I’m trying to make a row appear after the onError event activates, my idea is to do something like what’s in the code, but I can’t figure that out signInAndUpButton(context, true, () { FirebaseAuth.instance .signInWithEmailAndPassword( email: _emailTextController.text, password: _passwordTextController.text)
Continue readingTag: flutter-android
how send put requests in flutter?
Issue I am trying to update my json list on https://app.jsonstorage.net/ but i got response code 415 here is my code: and this is my json on jsonstorage: [{"username": "Amirhossein", "password": "302940101692", "email": "sahosseini1382@gmail.com", "phone": "09944236807"},{"username": "Hosna", "password": "74610945", "email":
Continue readingHow to deep copy nested map in flutter?
Issue final Map<String, List<List<dynamic>>> originalData = { "Chicago": [ [ 8512, 7, 3620.15, ], [ 8421, 7, 5625, ], ], "California": [ [ 8512, 21, 11407.630000000001, ], [ 8708, 12, 5537.84, ], ] }; Map<String, List<List<dynamic>>> myNewMap = Map.from(originalData); myNewMap.forEach((st,
Continue readingA problem occurred configuring project ':firebase_core'
Issue I am experiencing this problem when building the mobile / android flutter app, kindly help: [ +271 ms] > Configure project :firebase_core [ ] Evaluating project ‘:firebase_core’ using build file ‘C:\Users\kelsey\AppData\Local\Pub\Cache\hosted\pub.dev\firebase_core-2.4.0\android\build.gradle’. [ ] Using default execution profile [ ]
Continue readingFlutter search on random position string
Issue I want to search in a List of Strings, but the search query does not need to be in order as the result. Let’s say I have a list of strings List<String> a = [ Fracture of right arm,
Continue readingFlutter TextFormField( decoration: …, suffix: IconButton( onPressed: , )); icon button onPress error
Issue I want to give my input type as password so I want it as censored. I want to use "obscureText: true," so it works but when I want to declare it a function and add a button that will
Continue readingHow to setup Firebase distribution in a flutter app
Issue I’m trying to add firebase distribution to my flutter app following these instructions Everything is file until I get to step 3.b which says "In your module (app-level) Gradle file (usually //build.gradle), add the Google services plugin". I can’t
Continue readingHow to wrap text for android app in flutter
Issue I am developing android app using flutter and In my application trying to warp the text to next line but it is not working. In my app mail id is not wrapping. It is coming in the straight line.
Continue readingThe getter 'onReady' isn't defined for the type 'MapController'
Issue I am building a flutter map app with the flutter_map. When the device is ready, I want to fetch the location and move the map to the location. However, I’m having issues with my code. I’m not sure what
Continue readingView Last 3 Most Recent Images Taken With Camera In Flutter
Issue I would like to display last 3 images in the camera roll/gallery/photos from my app. How do I achieve this in Flutter? Any ideas? Let’s say I wanna view the latest images from the DCIM folder. how do we
Continue reading