Reputation: 1
We are working on Parking Management Application for our university where we are receiving the vehicle information. And if the entered vehicle is not registered, security guard have an option to approve and reject the entry of non-registered vehicle. There is movement of 30 two-wheelers in 10 min during peak hours.
Which state management is more preferable in this scenario? Data will be updating in real time and app shouldn't get slow.
I was thinking to use Riverpod but i am not sure whether it will be good or i should use getx.
Upvotes: -1
Views: 501
Reputation: 2352
There are many state management packages for flutter.
Below-mentioned packages are the best five packages or the top five packages:
Provider, Riverpod, Redux, BLoC / Rx, GetX, etc.
By the way, these packages are not in any order.
If you have a small project, I mean a Parking Management Application that is not as big as an E-commerce, Social Media or Social Messaging project. So you require something which is non-bloated, clean & minimal.
I recommend or suggest you go with the GetX package. That package helps you to build MVP (minimum viable product)
. It has features like,
state management
, route management
& dependency management
.
Apart from that, GetX is the #1 package
(with ~12894 likes) on the official pub dev website.
It's easy to learn as well as easy to implement. So, I can say that the GetX is beginner-friendly.
Upvotes: 1