shop_o (Ecommerce App with Flutter) A simple E-commerce app UI likes to implement pixel-to-flutter UI Features Sign Up Page Sign In Page Home Screen Showcases: Sign Up Page Signin Page Home Page 1 Home Page 2 Home Page 3 Figma Link Stacks Dart Flutter UI Flutter version: 3.13.4 Download source code on GitHub https://github.com/hprity60/shop-o FlutterappworldProvides the ..
Category : BLoC
Messenger App In some places in the application, I put “TODO”. I did not complete the entire feature. I only added it because it was not explained sufficiently. Download Download app-release.apk Supported Messages Types Image Text Gif Stickers Fallback Adaptive to add new image type Feature Multi theming based on material 3 Generate avatar based ..
Booking App – Algoriza Internship Final Project by Team 6. App Video : https://drive.google.com/file/d/1awyAgAqx3xzQjN_PlndqOFjZdzdWLW9E/view?usp=sharing RoomQuik .. Flutter Booking App using: Flutter BLoC as state management, Dio for APIs handling, GetIt for dependency injection, and Sizer with some built-in Flutter Widgets for Responsiveness, Shared Preferences, Google Maps, and GeoLocator, google maps places api, Pagination , Map Filtering. ..
About This is a modular app architecture that can be scalable as time passes. I will be using the BLoC state-management package. Scalable App Architecture – CodeWithAndrea This scalable app architecture design is inspired by Andrea Bizzotto. Full documentation of this design can be found here. In addition to that, you can use a VSCode extension called Flutter Feature ..
flutter_breaking Breaking Bad Api Project with BLOC. API: Breaking Bad Characters Download this app source code on GitHub https://github.com/yousefshabaneg/breakingBad_Cubit FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
bloc_login A Flutter project which is created by Bloc/Cubits. The differ from the other bloc login projects, this project has social login instances and sign up properties. Additionally, this project has landing page. When you open the app, firstly it controls the auth statement. If you have already logged in, home page will start, but ..
Mauve Flutter E-commerce Mauve E-commerce single vendor | Flutter BloC arch Tech Stack Client: Dart, Flutter Server: Firebase firestore Features, Techniques: *Clone of Custom UI/UX *BloC Arch & State management *Clean code and arch *Hive DB (for local cart system) *Firebase Auth (Phone – Email -Google) *Firebase Firestore (UI=>BloC=>Repo=>Api pattern for fetch data) *FCM (Manual and auto ..
LogKeeper (Flutter & Firebase) This is a log snapshot management solution used to save and share log snapshots within the development team. Supports iOS/Android/Web and utilizes Dart backend API (with client-server shared code). Logs stored in Firestore and Firebase Auth used to access some parts of the data. By default, mock repositories are used. So ..
bloc_app Login with BLoC (Cubit) Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this is your first Flutter project: Lab: Write your first Flutter app Cookbook: Useful Flutter samples For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance ..
Flutter Starter Kit – App Store Example A starter kit for beginner learns with Bloc pattern, RxDart, sqflite, Fluro and Dio to architect a flutter project. This starter kit build an App Store app as a example Feature Bloc Pattern Navigate pages by Fluro Local cache by using sqflite Restful api call by using Dio Database debugging (Android ..
Flutter Production Boilerplate A flutter project containing bloc, flutter_lints, hive, easy_translations and more! This repository is the starting point for my personal projects. If you have any suggestions or improvements feel free to let me know. The project strives to implement best practices recommended by Google and other developers. These best practices include but are ..
Flutter Production Boilerplate A flutter project containing bloc, flutter_lints, hive, easy_translations and more! This repository is the starting point for my personal projects. If you have any suggestions or improvements feel free to let me know. The project strives to implement best practices recommended by Google and other developers. These best practices include but are ..
Widgets that make it easy to integrate blocs and cubits into Flutter. Built to work with package:bloc. Learn more at bloclibrary.dev! *Note: All widgets exported by the flutter_bloc package integrate with both Cubit and Bloc instances. Usage Lets take a look at how to use BlocBuilder to hook up a CounterPage widget to a CounterCubit. counter_cubit.dart class CounterCubit extends Cubit<int> { CounterCubit() : super(0); void increment() => emit(state + ..
flutter_dice A sample Flutter app that shows how to manage a responsive state using the provider pattern. Concepts Illustrated Provider pattern Using a provider for global app state (i.e. Theme) Using a provider as a view model for a screen Using an MultiProvider to make the providers accessible Using ChangeNotifierProvider<T> to make the app responsive Consumption of providers using Provider.of<T>(context) method ..
Manage Cards – User Interaction for Wallet made with Flutter using BLOC Download Manage Cards app source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
Simple Stopwatch using Provider and the BLoC pattern. A simple example of using Provider with the BLoC pattern. This example uses the Provider package for DI and the BLoC pattern for state management. The BLoC in this example follows the rules stating that all input and output from a BLoC must be via streams and ..
Flutter Ready to Go A Flutter repo with a ready-to-go architecture containing flavors, bloc, device settings, json serialization and connectivity. Why not just fork it and start a new project with some setup done? There is a full article explaining each one of the following subjects: Flavors Flavors in Dart Visually identifying each flavor Identifying ..
Introduction: Made with Clean architecture + TDD + GraphQL + flutter_bloc + CodeCov + GitHooks + GitHub Actions (CI/CD) and finally with Flutter Rick and Morty Info A simple app to demonstrate Clean Architecture with GraphQL and flutter_bloc Motivation In Martin Fowler’s words, “Any fool can write code that a computer can understand. Good programmers write code ..
The project is maintained by a non-profit organisation, along with an amazing collections of Flutter samples. We’re trying to make continuous commits for changes along with the Flutter tech progress. The Desigin Pattern Goals for this sample Shows a state management approach using the Provider package,mainly use StreamProvider and ChangeNotifier. Show a logic for fetch data from ..
exampletododevindo A new Flutter project. Getting Started This project is a starting point for a Flutter application. A few resources to get you started if this is your first Flutter project: Lab: Write your first Flutter app Cookbook: Useful Flutter samples For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance ..
An extension to the bloc state management library which automatically persists and restores bloc states. Overview hydrated_bloc exports a HydratedStorage interface which means it can work with any storage provider. Out of the box, it comes with its own implementation: HydratedBlocStorage. HydratedBlocStorage is built on top of path_provider for a platform-agnostic storage layer. The out-of-the-box storage implementation reads/writes to file using the toJson/fromJson methods on HydratedBloc and should ..
Streams – BLoC – Reactive Programming Sample application to illustrate the article available on didierboelens.com. This article is an introduction to the notions of Streams, BLoC Pattern and Reactive Programming in Flutter. Download Source code on GitHub https://github.com/boeledi/Streams-Block-Reactive-Programming-in-Flutter FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
Reactive Programming – BLoC – Practical Use Cases and Patterns Source code of the article available on didierboelens.com This article introduces some practical use cases of the BLoC pattern: Event-StateSometimes, handling a series of activities which might be sequential or parallel, long or short, synchronous or asynchronous and which could also lead to various results, can ..