Posts by Iury Pereira • 27 points
6 posts
-
0
votes1
answer34
viewsA: Searchdelegate do not return to page in release mode
I could not solve this problem specifically, I really looked for any possible solution, but it seems to you with the way that the flutter generates the apk in release. In my case I just gave up on…
-
0
votes1
answer34
viewsQ: Searchdelegate do not return to page in release mode
I have this code on Searchdelegate class CustomSearchDelegate extends SearchDelegate<String> { @override List<Widget> buildActions(BuildContext context) { return [ IconButton( icon:…
-
0
votes1
answer35
viewsQ: Flutter Error Post - Datatime
The following situation is occurring in my project. I have a model that has a property like Datetime, in Tojson I pass the date to the json using toIso8601String, in case I just put the current date…
-
1
votes1
answer184
viewsQ: Flutter Mobx+Modular Data Not Loaded
Opa I’m using mobx+modular in an app, but I’m having a problem, which I think should be a simple mistake my. I have a Controller where I want to save the seller and default customer to always be…
-
0
votes1
answer182
viewsQ: Flutter Mobx load data at page start
I am studying/learning about mobx, and I am like the following problem: I have a controller that picks up and saves some settings with Shared Preferences. The saving part of the data is working…
-
0
votes1
answer162
viewsQ: Flutter : How to Recover a Screen with Data in Navigator Stack
I’m making a sales app, where I use a Drawer to move between the screens using the commands of Navigator, and found the following situation 1 - When opening the app it enters the main screen where…