Category : library

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. ..

Read more

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)); ..

Read more

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, ..

Read more

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 ..

Read more

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 ..

Read more

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 ..

Read more

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 ..

Read more

✨ 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: ..

Read more

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: ..

Read more

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>> ..

Read more

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 ..

Read more

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 ..

Read more

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 ..

Read more

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 ..

Read more

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 ..

Read more

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 ..

Read more