Posts by Josue Lopes • 129 points
5 posts
-
3
votes2
answers236
viewsA: How to change the language of the Flutter Image Picker plugin?
The steps to resolve the following question is here: Spanish support for Retake and Use photo Buttons of Uiimagepickercontroller Where the developer should add the languages supported by the app to…
-
2
votes2
answers236
viewsQ: How to change the language of the Flutter Image Picker plugin?
I would like to change the language of the text that is displayed in the library image_picker, i would like to leave this text translated into the user’s mobile language. If the image of how it is…
-
1
votes2
answers843
viewsA: Serialize JSON List in Flutter
Your object can look like this: class ResultLogin { final String token; final List<ZLoginResultSchema>schemas; ResultLogin({this.token, this.schemas}); ResultLogin.fromJson(Map<String,…
-
3
votes2
answers7739
viewsA: Flutter - Change internationalization of date names
You can use the library lntl to use the Dateformat this way you can format the dates referring to the locality you want. dependencies: flutter: sdk: flutter flutter_localizations: sdk: flutter intl:…
-
3
votes3
answers3057
viewsA: Current location - Flutter
Using the plugin Geolocator, you could do it this way: void _getCurrentLocation() { final Geolocator _geolocator = Geolocator()..forceAndroidLocationManager = true;…