Posts by Leonardo Fernandes • 19 points
3 posts
-
0
votes0
answers30
viewsQ: Update status without creating widget directly - Flutter
I have in my main.Art a Bottomnavigationbar that should always be visible. Some screens cannot be accessed by Bottomnavigationbar icons. Main.Dart vvvvv void main() async { await _storage.ready;…
-
0
votes0
answers45
viewsQ: setState on Flutter works only the first time
I’m studying Flutter and decided to make a cart, I have the product widget and widget to list products. The problem is that when I first click on add it adds in the cart and updates the amount in…
-
-1
votes1
answer28
viewsQ: Return repeated in action on the flutter login screen
bool _login; Future<bool> login(String email, String senha) async { var response = await http.get("http://192.168.0.116:5001/usuarios/login/$email/$senha"); if(response.statusCode == 200) {…