Beatz A new Flutter music player project. Info This app relies on the platform channel and the Bloc pattern to build a reactive music player application on Android Screenshots Download A Flutter Music Player for Android Source Code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
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 ..
Party Flutter Mobile party game implemented in the Flutter framework. Its been heavily inspired by the Heads Up! game: Get a group of friends (at least 3 players) Start the app The youngest player takes the phone Pick one of the available categories/topics (eg. Animals, TV series, Sport) Place the phone at your forehead, so ..
Parallax in Parallax scrolling in a flutter, the UI that I remake is from a website called firewatchgame.com. See the video where I explain more about the project here. You can also download the completed version of the app from apk folder. Hope you like it. Demo Download parallax scrolling effect in Flutter source code ..
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 ..
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 ..
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 ..
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 ..
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 ..
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>> ..
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 ..
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 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 ..
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 ..
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 ..
This is a proof of concept and WIP Feedback and ideas welcome !! Access your pubspec and git commit information like versions and commit status from auto-generated widgets. Configure your widgets to display pertinent and always up to date information to your users like the last build version, expose advanced info in production or dev ..
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 ..
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..
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 ..
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 ..
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 ..
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. ..
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 ..
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 ..
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 ..
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 ..
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 ..
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 ..
relax Relax is a Flutter application built for the Flutter Create a contest. It gives the user the choice of four nature sounds and rotates through related background images while the sounds are playing. Running the app To run the Relax app, clone the repo, cd into the project directory, and run flutter run. When ..
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 ..
In this app, I have implemented Google Sign In using Firebase for both Android and iOS, fixing all the issues with the latest Flutter updates. To understand how to fix all the Firebase issues in Flutter make sure you check out my Medium article. Flutter 1.7 updates With the introduction of Flutter 1.7, the most ..
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 ..
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 ..
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 ..
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 ..
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 ..
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, ..
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, ..
