Using Streams in Flutter.
Streams are similar to observables in Rx, LiveData in Android. Stream as the name suggest is a sequence of asynchronous events. You define stream at one place, add data to it at some other place and then listen to this data addition elsewhere, so as to refresh your UI etc (like some widget or).
Let’s understand streams by some simple examples.
http://flutterappdev.com/2018/12/17/using-streams-in-flutter-flutter-app-development/
#flutterappdev #flutterlive #flutterio #flutter #android #iOS
http://Telegram.me/programming_courses
Streams are similar to observables in Rx, LiveData in Android. Stream as the name suggest is a sequence of asynchronous events. You define stream at one place, add data to it at some other place and then listen to this data addition elsewhere, so as to refresh your UI etc (like some widget or).
Let’s understand streams by some simple examples.
http://flutterappdev.com/2018/12/17/using-streams-in-flutter-flutter-app-development/
#flutterappdev #flutterlive #flutterio #flutter #android #iOS
http://Telegram.me/programming_courses
Flutter App Dev
Using Streams in Flutter | Flutter App Development
Using streams in flutter are similar to observables in Rx, LiveData in Android. Stream as the name suggest is a sequence of asynchronous events.