Category : Flutter App

Flutter has Power Reference project for Flutter has Power workshops organized by STX Next. FOOdy Mock food ordering mobile app built in Dart and Flutter. Consists of three screens that present different aspects of Flutter development. Home screen Sticky header (AppBar) List of items (ListView) Stacked layout (Stack) Clickable widgets (FloatingActionButton, RaisedButton, GestureDetector) Local state ..

Read more

Complex UI in Get the complete code for a complex UI which includes Tabs, An Analog Clock, Custom Graph, Custom Buttons and much more. See the video where I explain more about the project here. Screenshots Getting Started With Flutter Flutter Website Download Clock App in Flutter Source Code on GitHub https://github.com/Ronak99/ClockApp FlutterappworldProvides the list ..

Read more

About flutter_responsive plugin This plugin provides an easy and productive way to work with responsive layouts for Flutter Applications in mobile, desktop and web, allowing your layout to adapt and wrap widgets ( Container, Rows, Columns, and RichText ) referent to the size of his parent element. Licensing This project follows the GNU General Public ..

Read more

import ‘package:flutter/material.dart’; class DemoToggleButtons extends StatefulWidget { @override _DemoToggleButtonsState createState() => _DemoToggleButtonsState(); } class _DemoToggleButtonsState extends State<DemoToggleButtons> { List<bool> isSelected = [false, true, false]; FocusNode focusNodeButton1 = FocusNode(); FocusNode focusNodeButton2 = FocusNode(); FocusNode focusNodeButton3 = FocusNode(); List<FocusNode> focusToggle; @override void initState() { // TODO: implement initState super.initState(); focusToggle = [focusNodeButton1, focusNodeButton2, focusNodeButton3]; } @override void ..

Read more

Grocery-App Flutter Grocery Shopping App Fully Working Template Grocery Shopping Flutter app is created as a wonderful solution for any food shop Flutter App UI template. It is a template for a Flutter developer that wants to create a grocery application with a clean design. The template is only lay-outing without data flow and communication ..

Read more

A flutter plugin to implement a Boom Menu, with icons, title, subtitle, animated FAB Icons and hide on scrolling. Flutter Boom Menu Usage The BoomMenu widget is built to be placed in the Scaffold.floatingActionButton the argument, replacing the FloatingActionButton widget. It’s not possible to set its position with the Scaffold.floatingActionButtonLocation the argument, but it’s possible ..

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

Flutter Geolocator Plugin A Flutter geolocation plugin which provides easy access to the platform specific location services (FusedLocationProviderClient or if not available the LocationManager on Android and CLLocationManager on iOS). Branch Build Status develop master Features Get the current location of the device; Get the last known location; Get continuous location updates; Check if location ..

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

A bottom navigation bar that you can customize with the options you need, without any limits. You can also customize the appearance of the navigation bar. The development was inspired by the following design: personalized-tab-bar You can see the source code of this lib inside the /lib folder. Show some ❤️ and star the repo ..

Read more

Holden Certificate Generator made with Flutter. Dependencies spreadsheet_decoder path_provider file_picker pdf_viewer_plugin pdf permission_handler share_extend provider printing 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

Hangman A hangman game is written in Dart with the Flutter framework. Screenshots License Released under MIT License. See LICENSE for more info. Download Flutter Hangman Game Source Code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

firebase.dart Firebase dart common interface and implementation for Browser, VM, node, and flutter Firebase Initialization Usage in browser import ‘package:tekartik_firebase_browser/firebase_browser.dart’; void main() { var firebase = firebaseNode; // … } Usage on node import ‘package:tekartik_firebase_node/firebase_node.dart’; void main() { var firebase = firebaseNode; // … } Usage on flutter dependencies: tekartik_firebase_flutter: git: url: git://github.com/tekartik/firebase.dart path: firebase_flutter ..

Read more

sqflite SQLite plugin for Flutter. Supports iOS, Android and MacOS. Support transactions and batches Automatic version management during open Helpers for insert/query/update/delete queries DB operation executed in a background thread on iOS and Android Getting Started In your flutter project add the dependency: For help getting started with Flutter, view the online documentation. Usage example Import sqflite.dart Opening ..

Read more

bloc_test A real-world example of using the BLoC pattern in Flutter. This app features a searchable list of users and demonstrates an elegant way to keep the UI in sync with the model. Features The app implements the following features: user list and detail pages user management add single user slide to remove single user ..

Read more

A set of controls and styles converting your WPF application into a great looking Modern UI app. This open source project is a spin-off of XAML Spy, the visual runtime inspector for Silverlight, Windows Phone, Windows Store and WPF. Read the official announcement Demo Check out the MUI demo app included in the MUI release. ..

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

giphy_client A Giphy API Client for Dart compatible with all platforms Usage First, register an app at the Giphy Developers Portal. Then, follow the instructions below: Features and bugs Please file feature requests and bugs at the issue tracker. Get more details and Sorce Code of giphy client on Pub.Dev FlutterappworldProvides the list of the opensource Flutter ..

Read more

giphy_picker A plugin that allows you to pick animated GIF images from Giphy. Getting Started First, you need to register an app at the Giphy Developers Portal in order to retrieve an API key. Pick a GIF: import ‘package:giphy_picker/giphy_picker.dart’; final gif = await GiphyPicker.pickGif( context: context, apiKey: ‘[YOUR GIPHY APIKEY]’); Display a GIF using the ..

Read more

dio A powerful Http client for Dart, which supports Interceptors, Global configuration, FormData, Request Cancellation, File downloading, Timeout, etc. Get started Add dependency dependencies: dio: 3.x #latest version In order to support Flutter Web, v3.x was heavily refactored, so it was not compatible with version 3.x See here for a detailed list of updates. Super ..

Read more

flutter-by-example A collection of simple, bare-bones Flutter apps that each demonstrate a concept The apps are slowly being updated to Dart 2; be sure to use the –preview-dart-2 flag when running/compiling these examples Apps Hello World: one-line Flutter app Updated for Dart 2 Material Navigation: two screen Flutter that demonstrates navigation using Material (2.1) Routing ..

Read more

Flutter Wear Plugin A collection of widgets for developing Wear OS (Android Wear) apps in Flutter. Widgets There currently three widgets provided by the plugin: WatchShape: determines whether the watch is square or round. InheritedShape: an InheritedWidget that can be used to pass the shape of the watch down the widget tree. AmbientMode: builder that ..

Read more

Flutter OS (Android Wear OS app) Check out my Medium article “Flutter: Building Wear OS app”. First of all, I want to state that it is not an OS, it is just an app. This is an app for Wear OS devices which is inspired by the Medium article written by Matt Sullivan, “Experimenting with ..

Read more

flutter_bluetooth This flutter app will help you to connect to Bluetooth Devices (like HC-05). You can send messages to the Bluetooth module and perform various operations. By default, the app has only on and off functionality for any paired Bluetooth devices, but you can add as many functionalities as you want. This flutter plugin is ..

Read more

Binary Clock This is a binary clock created using Flutter. 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 ..

Read more

RxDart About RxDart adds additional capabilities to Dart Streams and StreamControllers. Dart comes with a very decent Streams API out-of-the-box; rather than attempting to provide an alternative to this API, RxDart adds functionality from the reactive extensions specification on top of it. RxDart does not provide its own Observable class as a replacement for Dart ..

Read more

This is a clone of the famous application Udacity, and its done with the flutter frame work, this particular repo, contains the code for the student side Show some ❤️ and star the repo to support the project This repository containing links of all the example apps demonstrating features/functionality/integrations in Flutter application development. Building samples ..

Read more

Beautiful TabBar Interaction with Sliding Inset FABs, made with Flutter Dart. Pure Dart. No native dependencies. No linking. No obstacles. Looks beautiful. Stunning and fluid animations. You won’t believe it’s not a native view. Customize it. You can adjust nearly everything to make it fit perfectly to your app. Easy to use. Uses established BLOC ..

Read more

Cab-Booking-Flutter-Web-App Cab Booking Template – Flutter The cab offers you just about everything you are looking for in a free taxi service website template. Almost, too obvious, don’t you think? But you know the gist of it; keeping things simple and to the point is one of the best approaches to succeed online. With Taxi, ..

Read more

A Flutter plugin to use the Firebase Core API, which enables connecting to multiple Firebase apps. For Flutter plugins for other Firebase products, see README.md. Usage To use this plugin, add firebase_core as a dependency in your pubspec.yaml file. Getting Started See the example directory for a complete sample app using Firebase Core. Issues and feedback Please file Flutterfire specific issues, ..

Read more