Posts by Johnny The Developer • 1 point
2 posts
-
0
votes1
answer60
viewsA: Future is not recognized in Flutter (Dart)
I managed to solve the problem, what I needed to do was set up my import to be called by Fut: import 'dart:async' as Fut; Soon after, I went to my code and put: Fut.Future<int>…
-
0
votes1
answer60
viewsQ: Future is not recognized in Flutter (Dart)
I’m studying Flutter and recently I’ve had a rather boring problem. I was using Future for my asynchronous programming and I did all the code, just like the example I was seeing. However, I realized…