An open API service indexing awesome lists of open source software.

https://github.com/thegreataxios/flutter-example-apps

Flutter Example Apps - For Helping Others Learn Flutter
https://github.com/thegreataxios/flutter-example-apps

Last synced: 3 months ago
JSON representation

Flutter Example Apps - For Helping Others Learn Flutter

Awesome Lists containing this project

README

          

# Flutter Example Apps

## App List

Flutter RxDart Hive - Example #1

This application is focused on the two main technologies/packages that I use within many of my Flutter applications.

1. RxDart -> RxDart is a package that focuses on building extra functionality ontop of the Flutter Streams. The Reactive Programming style makes it very easy to have your data be the deciding factor on when to show different UI's within an application, or even just deciding whether to run a background function or not.

2. Hive -> An on-device data store that utilize JSON data. It is essentially a NoSQL database on device, as opposed to Sqflite which is an on-deivce SQL memory store.

## Other Resources

Here are some other resources for these two technologies: RxDart and Hive. I will add more over time!

1. RxDart

- [The Package](https://pub.dev/packages/rxdart)
- [Github](https://github.com/ReactiveX/rxdart)
- [RxDart with Firestore](https://codewithandrea.com/videos/2020-05-04-rx-dart-by-example-combine-latest/)
- [RxDart Basics with Bloc](https://medium.com/flutter-community/why-use-rxdart-and-how-we-can-use-with-bloc-pattern-in-flutter-a64ca2c7c52d)

2. Hive
- [The Pacakge](https://pub.dev/packages/hive)
- [Github](https://github.com/hivedb/hive)
- [Documentation](https://docs.hivedb.dev/#/)
- [Good Starting Tutorial](https://medium.com/@viveky259259/hive-for-flutter-3-implementation-e825a0a833d3)

### Notes on this Repo

I built this repo and first application for somebody asking on Reddit. I am more than happy to build other Flutter examples with different technologies, tutorials, walkthroughs, etc. Please just ask for what you would like.
I can also build out APIs to match and show the entire platform from top to bottom.

#### Contributing

If you have an application that you feel shows off a nice stack of packages on Flutter, please fork this repo, create a new branch, create a PR and tag me @TheGreatAxios. I will review it and reach out with any quesitons, and then hopefully merge it in so we can continue to help the community grow.