Flutter Animated Sliced Button New Animated Sliced Button Widget. It is very primitive now, but I will work for asymmetrical fragmentation and dispersion in different ways as soon as possible. Screenshots Download Animated Sliced Button widget source code on GitHub Check out the implementation details on PUB: https://pub.dev/packages/animated_sli..

Read more

fvm Flutter Version Management: A simple cli to manage Flutter SDK versions. FVM helps with the need for a consistent app builds by allowing to reference Flutter SDK version used on a per-project basis. It also allows you to have multiple Flutter versions installed to quickly validate and test upcoming Flutter releases with your apps, ..

Read more

Cupertino Icons his is an asset repo containing the default set of icon assets used by Flutter’s Cupertino widgets. Usage https://pub.dev/packages/cupertino_icons Issues For issues, file directly in the main Flutter repo. Icons For a list of all icons, see CupertinoIcons class documentation constants. For versions 0.1.3 and below, see this glyph map. Download Cupertino Icons widget source code on GitHub ..

Read more

flutter_post A Flutter sample app lists news articles provided by google newsApi. 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 Fonts used Raleway Screenshots For help getting started ..

Read more

Contra Flutter Kit Flutter application built on top of contra wireframe kit. Thorough this project i will be developing all the screens in flutter and sharing in couple of series post. Kits Contra flutter kit will be having screens developed in all the categories.(Currently only onboarding kit is available) Onboarding Login Forms Menus Dialogs Toast ..

Read more

MyNews A fully customize & personalize news app, featuring world & local news, and top-headlines topics Screenshots Technologies Front-end Flutter SDK ScopedModel for state management Storage SQLite Shared preferences Back-end Firebase Google Geolocation News API – newsapi.org Download News app source code on GitHub https://github.com/omergamli..

Read more

custom_navigation_bar A custom navigation bar with bubble click effect. Overview This project is inspired by this post from Dribbble and The Boring Flutter Development Show, Ep. 35 This package gives you a cute bubble effect when you click on the navigation bar. Dribbble: Implemented: Gallery How to install Add this to your package’s pubspec.yaml file: dependencies: custom_navigation_bar: ^0.3.0 ..

Read more

Official CLI for the GetX™ framework. This CLI is in Beta stage, use with caution. // To install: pub global activate get_cli // To create a flutter project in the current directory: // Note: By default it will take the folder’s name as project name // You can name the project with `get create project:my_project` // If ..

Read more

Languages: English (this file), Brazilian Portuguese, Spanish,Polish. About Get  GetX is an extra-light and powerful solution for Flutter. It combines high performance state management, intelligent dependency injection, and route management in a quick and practical way. GetX has 3 basic principles, this means that this is the priority for all resources in the library PERFORMANCE: GetX is focused ..

Read more

Waste-Classifier An app built to classify waste/garbage into organic waste or recyclable waste. The app was built using the Flutter framework. It uses a Neural Network model created using Tensorflow and converted to Tensorflow Lite. Architecture Screenshots Organic Recyclable Download Waste Classifier app source code on GitHub https://github.com/RyuuKenshi/Waste-..

Read more

Short into: A collapsible sidebar for Flutter apps implementing the Material Design. collapsible_sidebar A collapsible sidebar for Flutter apps implementing the Material Design. Features Material Design Pre-built customizable tile widgets (CollapsibleItems) Smooth Animation Supported platforms Flutter Android Flutter iOS Flutter web Flutter desktop ???? Version 1.0.7+2 ✨  Added ability to handle lists of icons Added ..

Read more

Supercharged Supercharged brings all the comfort features from languages like Kotlin to all Flutter developers. ???? fully tested ???? well documented ???? enterprise-ready For dart web/native projects you can use ⚡ Supercharged Dart. ⛏️ Getting started  Add the dependency supercharged: ^1.X.X (find recent version) to your project and start using Supercharged everywhere: ???? Highlights  Transform any String to colors Helpful string functions: Handle user input: Effortless aggregation for Iterable<int> and Iterable<double>: Advanced ..

Read more

Retter IOS/Android Reddit app created with Flutter https://play.google.com/store/apps/details?id=com.mzegar.flutterreddit Screenshots Building from source Clone the repo, cd Retter-master Run using flutter run or open with an IDE such as Android Studio Contribution I’m open to anyone contributing to this repo. I’d advise using Android Studio and running a dartfmt before creating a pull request: dartfmt. Pages are setup using Mobx and a viewmodel pattern. ..

Read more

arkit_flutter_plugin Short intro: Flutter Plugin for ARKit – Apple’s augmented reality (AR) development platform for iOS mobile devices. Note: ARKit is only supported by mobile devices with A9 or later processors (iPhone 6s/7/SE/8/X, iPad 2017/Pro) on iOS 11 and newer. For some features iOS 12 is required. Usage Depend on it Follow the installation instructions from Dart ..

Read more

Expandable A Flutter widget that can be expanded or collapsed by the user. Introduction This library helps implement expandable behavior as prescribed by Material Design: Motion > Choreography > Transformation Components > Cards > Behavior Expandable should not be confused with ExpansionPanel. ExpansionPanel, which is a part of Flutter material library, is designed to work only within ExpansionPanelList and cannot ..

Read more

Flutter Avatars – Bottts A high performance Flutter Widget to render Bottts svg avatars on android/ios devices. It’s faster than other classical approaches because it’s not using any API, rather it’s rendering SVG strings on the fly ! Bottts : Characters Originally Designed by Pablo Stanley, the Sketch library can be found on bottts.com. Getting Started Create Bottt object: // Create ..

Read more

interactive_webview Plugin that allow Flutter to communicate with a native WebView. Warning: This is not a display WebView. This plugin is designed to make communication between Flutter and WebView javascript. You can call a Javascript function; in the other hand, you can send messgage (postMessage) from Javascript to Flutter Android: using JavascriptInterface iOS: using WKUserContentController Getting Started For ..

Read more

flutter_fbaudience_network Plugin to integrate Facebook Native Ad to Flutter application Warning: The plugin is based on Flutter PlatformView (AndroidView) to create a custom widget from Native View. Therefore, only Android is supported at the moment. For iOS, wait for Flutter team to implement iOSView equivalent. Getting Started For help getting started with Flutter, view our online documentation. How it works The ..

Read more

woocommerce Woocommerce SDK for Flutter. Getting Started Add the package to your pubspec.yaml and import. import ‘package:woocommerce/woocommerce.dart’; Create an instance of WooCommerce for your project. Example: WooCommerce woocommerce = WooCommerce( baseUrl: yourBaseUrl, consumerKey: yourConsumerKey, consumerSecret: consumerSecret); Parameter, [baseUrl] is the base url of your site. For example, http://me.com, https://me.com or http://my.me.com Parameter [consumerKey] is the consumer key provided by ..

Read more

Expansion card This package provides an easy implementation of a Expansion type card where you can also add gif at the background. How to use import ‘package:expansion_card/expansion_card.dart’; Center( child: ExpansionCard( background: Image.asset(“assets/animations/sleep.gif”), title: Container( child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ Text( “Header”, style: TextStyle( fontFamily: ‘BalooBhai’, fontSize: 30, color: Colors.white, ), ), Text( “Sub”, style: ..

Read more

flutter_calendar A calendar widget for Flutter Apps. Borrowed DateTime utility functions from the Tzolkin Calendar web element. Usage Add to your pubspec dependencies: flutter_calendar: ^0.0.1 Render the map with one of three options: 1. Default, Material Design new Calendar() 2. An Expandable Map new Calendar( isExpandable: true; ) 3. Customize It (Standard or Expandable) new Calendar( ..

Read more

Flutter Material Color Picker  Material Color picker is a Flutter widget, that can be customizable. By default, it’s Material Colors, but you can define your own colors. You can also use CircleColor widget to display color in your app. Example, you can set the color picker in a dialog and display the selected color in ..

Read more

UnivAgenda Application to have the agenda of the University of Maine (Le Mans University), University of Tours and Rennes . In addition, other Universities can be added easily, on request. You can also, instead, link to an ICAL file if your university is not available (for Efrei / Efreitech for example). It is available for Android on the PlayStore. Unfortunately, given the price of an Apple developer account, it ..

Read more

GroupListView package for Flutter. A ListView that allows you to group list items and support headers like iOS UITableView section. Features List Items can be grouped. Support headers for each group. All fields from ListView.builder constructor available. Getting Started Add the package to your pubspec.yaml: group_list_view: ^1.0.6 In your dart file, import the library: import ‘package:group_list_view/group_list_view.dart’; Instead ..

Read more

Country picker A flutter package to select a country from a list of countries. Getting Started Add the package to your pubspec.yaml: country_picker: ^1.0.4 In your dart file, import the library: import ‘package:country_picker/country_picker.dart’; Show country picker using showCountryPicker: showCountryPicker( context: context, showPhoneCode: true, // optional. Shows phone code before the country name. onSelect: (Country country) { ..

Read more

Video player plugin edited to fetch subtitles from HLS stream and load SRT from url. video_player-0.10.1-3 Works with https://github.com/pharshdev/chewie-0.9.7 for displaying CC button and subtitles Video Player plugin for Flutter A Flutter plugin for iOS and Android for playing back video on a Widget surface. Note: This plugin is still under development, and some APIs might not ..

Read more

sms_user_consent Request user’s phone number (supports dual sim) and/or consent to read SMS without adding any permissions, using Android’s SMS User Consent API Screenshots Steps to use 1] Create an instance, optionally supply phone number listener and sms listener 2a] OPTIONAL : Request user’s phone number Once the user selects a phone number, it can be accessed as 2b] OPTIONAL : Request ..

Read more