means that the function is returning an integer . Not a RxInt. When assigning values to Rx Types use value propery. example: myInteger.value = 100; When getting the value from Rx Type, myInteger.value.23 Şub 2021
Read moreHow do you get packages in Flutter?
Adding a package dependency to an app
Read moreWhat is GetBuilder Flutter?
GetBuilder essentially replaces the StatefulWidget . You can keep all the pages Stateless and wrap specific widgets in GetBuilder . It’s a nice way to manage ephemeral state, while keeping the code organized. We also get a refined control over which widgets to update by assigning unique IDs.
Read moreWhat is RxInt?
These reactive streams are referred by ‘Rx’ in GetX. So, RxInt means a stream of variables of int datatype .
Read more