Fish Redux What is Fish Redux ? Fish Redux is an assembled flutter application framework based on Redux state management. It is suitable for building medium and large applications. It has four characteristics: Functional Programming Predictable state container Pluggable componentization Non-destructive performance Architecture diagram Installation Go Documentation Examples all list – a simple all list demo. ..
Category : library
Spider A small dart library to generate Assets dart code from assets folder. It generates dart class with static const variables in it which can be used to reference the assets safely anywhere in the flutter app. Example Before Widget build(BuildContext context) { return Image(image: AssetImage(‘assets/background.png’)); } After Widget build(BuildContext context) { return Image(image: AssetImage(Assets.background)); ..
QR.Flutter is a Flutter library for simple and fast QR code rendering via a Widget or custom painter. Features Built on QR – Dart Automatic QR code version/type detection or manual entry Supports QR code versions 1 – 40 Error correction / redundancy Configurable output size, padding, background and foreground colors Supports image overlays Export ..
Aqueduct is a modern Dart HTTP server framework. The framework is composed of libraries for handling and routing HTTP requests, object-relational mapping (ORM), authentication and authorization (OAuth 2.0 provider) and documentation (OpenAPI). These libraries are used to build scalable REST APIs that run on the Dart VM. If this is your first time viewing Aqueduct, ..
GetFlutter is a 100% Free Flutter open source UI library that is build to make flutter development easier than ever. GetFlutter has 1000+ pre-build widgets that you could reuse to build both Flutter Web or Mobile app development. Table of contents Screenshot Quick start Features Demo Contributing Bugs and feature requests Documentation Copyright and license ..
Commons Commons Flutter package can used for Flutter Android and IOS applications. Includes Alert dialog Toast messages Single input dialog Options dialog Loading screen Extensions functions Stack trace screen Shared Preferences functions Value validators Date and Time functions Connection Functions http rest client api functions How to use Required Dart version >= 2.6+ 1. Depend ..
???? Flutter ???? to Google Sheets ???? A Demo application that stores User feedback from Flutter application into Google Sheets using Google AppScript. You can try the Web version of this app here. ???? Introduction Google Sheets is a very powerful tool ???? if we look deep in it. It provides us with an interface ..
WallE Wallpaper App built using Flutter & Unsplash API Story When I created iWallE (which is a CLI wallpaper app), I always wanted to create a wallpaper app for Mobile. I attempted to create it in Native Android but it was not an easy process, and I gave up. After 2 years, I’ve created WallE ..
Dexter ???? ???? ViewModel Generator for Flutter, Built using Flutter Demo https://flutter-dexter.surge.sh Screenshots Dependencies provider demoji Contributing Feel free to contribute to the project by creating issues or sending pull-requests. Getting Started A few resources to get you started if this is your first Flutter project: Lab: Write your first Flutter app Cookbook: Useful Flutter ..
Image utilities for Flutter NetworkImageWithRetry Use NetworkImageWithRetry instead of Image.network to load images from the network with a retry mechanism. Example: var avatar = new Image( image: new NetworkImageWithRetry(‘http://example.com/avatars/123.jpg’), ); The retry mechanism may be customized by supplying a custom FetchStrategy function. FetchStrategyBuilder is a utility class that helps building fetch strategy functions. Features and ..
Flutter Package: May be used to intercepting the Android back-button, as an alternative to `WillPopScope`. back_button_interceptor In simple cases, when you need to intercept the Android back-button, you usually add WillPopScope to your widget tree. However, when developing stateful widgets that interact with the back button, it’s more convenient to use the BackButtonInterceptor. You may ..
Flutter Package: A Redux version tailored for Flutter, which is easy to learn, to use, to test, and has no boilerplate. Allows for both sync and async reducers. async_redux Async Redux is a special version of Redux which: Is easy to learn Is easy to use Is easy to test Has no boilerplate Table of ..
✨ Flutter Spinkit A collection of loading indicators animated with flutter. Heavily inspired by @tobiasahlin‘s SpinKit. ???? Installing dependencies: flutter_spinkit: “^4.1.1” ⚡️ Import import ‘package:flutter_spinkit/flutter_spinkit.dart’; ???? How To Use Flutter Spinkit const spinkit = SpinKitRotatingCircle( color: Colors.white, size: 50.0, ); final spinkit = SpinKitFadingCircle( itemBuilder: (BuildContext context, int index) { return DecoratedBox( decoration: BoxDecoration( color: ..
Fancy list loading effect or The Shimmer Effect in Flutter Shimmer Effect is really cool placeholder effect that you can show when you are loading data in the form of a list. To do it in flutter we use the dependency called Shimmer. After trying it out I realized that it can be used for ..
import ‘package:flutter/material.dart’; import ‘dart:math’ as math; void main() => runApp(TwitterFab()); class TwitterFab extends StatefulWidget { @override _TwitterFabState createState() => _TwitterFabState(); } class _TwitterFabState extends State<TwitterFab> with SingleTickerProviderStateMixin { TabController controller; @override void initState() { super.initState(); controller = TabController(length: 2, vsync: this); controller.addListener(() { setState(() {}); }); } @override Widget build(BuildContext context) { return MaterialApp( debugShowCheckedModeBanner: ..
Looking for build a Flutter widget for Table layout with CSV data, check out the below code spinet to build your Flutter Table Layout with Flutter. import ‘package:flutter/material.dart’; import ‘package:csv/csv.dart’; import ‘dart:async’ show Future; import ‘package:flutter/services.dart’ show rootBundle; class TableLayout extends StatefulWidget { @override _TableLayoutState createState() => _TableLayoutState(); } class _TableLayoutState extends State<TableLayout> { List<List<dynamic>> ..
Allows user pick a document. Picked document is copied to app temporary directory. Optionally allows pick document with specific extension only. flutter_document_picker Allows user pick a document. Picked document is copied to app temporary directory. Optionally allows pick document with specific extension only. When file is picked its extension is checked using allowedFileExtensions parameter. Then ..
A mobile application that visualizes various sorting algorithms such as Bubble sort, selection sort, quick sort, etc. The sorting process is visualized as the rearrangement of vertical lines of different lengths from the shortest to the tallest. Sorting Visualiser This is a simple sorting visualization app built using the flutter framework. The user can select ..
Generative d.Art Demonstrate how to generate your very own #d_Art using Flutter. As a technical point we are NOT relying on Widget but RenderBox directly. Don’t be afraid of those 60 lines of codes & change everything you want (but not the line with Math.Exp, it can damage your computer permanently) Code is tuned to ..
fl_animated_linechart An animated chart library for a flutter. Support for DateTime axis Multiple y-axes, supporting different units Highlight selection Animation of the chart Tested with more than 3000 points and still performing There are currently two different charts: line chart area chart Getting Started Try the sample project or include it in your project. The ..
flutter_sodium With flutter_sodium you get access to the modern, easy-to-use libsodium crypto library in your Flutter apps. One set of crypto APIs supporting both Android and iOS. Getting Started In your flutter project add the dependency: dependencies: … flutter_sodium: any Important: For iOS you’ll need to manually update the Podfile in your ios project. Usage ..
google_fonts NOTE: This package is in Beta. The API is subject to change. The google_fonts package for Flutter allows you to easily use any of the 960 fonts (and their variants) from fonts.google.com in your Flutter app. Getting Started With the google_fonts package, .ttf files do not need to be stored in your assets folder ..
This is an example app in which the backdrop can be expanded or contracted with a swipe gesture. Swipe to Expand backdrop example Example app to demonstrate the ability to expand or contract backdrop using a swipe gesture Demo Installing Clone this repo Use “flutter run” to run the app Getting Started This project is ..
FlutterBleLib A library for all your Bluetooth Low Energy needs in Flutter. Internally utilizes Polidea’s MultiPlatformBleAdapter, which runs on RxAndroidBle and RxBluetoothKit. BLE Simulator This library supports BLEmulator, the BLE simulator. The simulation allows one to develop without a physical smartphone or BLE peripheral and use one’s production BLE–related code in automated testing. Usage To ..
Auth This library package works with four plugins: firebase_auth google_sign_in flutter_facebook_login flutter_twitter All four are used to log into a Firebase backend. If you’re familiar with these plugins, you’ll be able to quickly use this class library. Installing I don’t always like the version number always suggested in the ‘Installing‘ page. Instead, always go up ..
A powerful official extension library of image, which support placeholder(loading)/ failed state, cache network, zoom pan image, photo view, slide out page, editor(crop,rotate,flip), paint custom etc. extended_image A powerful official extension library of image, which support placeholder(loading)/ failed state, cache network, zoom pan image, photo view, slide out page, editor(crop,rotate,flip), paint custom etc. Table of ..