A new Flutter project with the Riverpod State Management
I am exploring Riverpod and build a lots of sample flutter app with the help of riverpod.
Riverpod
is a complete rewrite of the Provider
package to make improvements that would be otherwise impossible which is created by the Remi Rousselet
It ensures compile safety and with in it, can supports multiple provider instances at the same time
It recompute states/rebuild UI only when needed
Check out the official website of Riverpod
I hope this repo will help many beginner developers and get the concept of Riverpod State Management.
You can get the project Counter App
Output of the Counter App
You can get project Simple Data Type App Implement through Riverpod
Output of the Simple Data Type App
You can get project Switch Widget Flutter App
Output of the Switch Widget Flutter App
You can get project Slider Widget Flutter App
Output of the Slider Widget Flutter App
You can get project TextField Widget Flutter App
Output of the TextField Widget Flutter App
You can get project BottomNavigationBar Widget Flutter App
Output of the BottomNavigationBar Widget Flutter App
You can get project Change Theme Flutter App
Output of the Change Theme Flutter App
You can get project Text Changer Font-Size App Flutter App
Output of the Text Changer Font-Size App
You can get project Drop-Down Button Widget Flutter App
Output of the Drop-Down Button Widget Flutter App
You can get project Joke Flutter App where I am fetching the API Joke data as to shown in our app.
Output of the Joke Flutter App
You can get project MiniMart Flutter App where I am getting the data through the Objec as you canshown in our app.
Output of the MiniMart Flutter App
You can get project Sqflite Todo Flutter App where I am able to get, add, update and delete the data through sqflite using Riverpod as you can shown in our app.
- User can add and get the TODO data
- User can update those TODO data
- double clicking the TODO, can see the detail of that
- long press clicking, can delete the single clicking TODO
- we can delete the all TODO
Output of the Sqflite Todo Flutter App