double_back_to_close_app A Flutter package that allows Android users to press the back-button twice to close the app. Usage Inside a Scaffold that wraps all your Widgets, place the DoubleBackToCloseApp passing a SnackBar: class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( body: DoubleBackToCloseApp( child: Home(), snackBar: const SnackBar( content: Text(‘Tap back again to leave’), ), ..
Category : Flutter App
StarBook A digital diary that can help you in keeping track of your mood and productivity throughout the month. Mood tracker is a good way to see how you are mostly feeling. And it helped me a lot to realise how my general mood is and to improve it. Cause I was feeling down two ..
QR Code Scanner A QR code scanner that works on both iOS and Android by natively embedding the platform view within Flutter. The integration with Flutter is seamless, much better than jumping into a native Activity or a ViewController to perform the scan. Warning If you are using Flutter Beta or Dev channel (1.25 or ..
workout_app A workout Flutter application UI 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 documentation, which offers tutorials, samples, ..
FlexColorScheme FlexColorScheme helps you make beautiful color scheme based Flutter themes, with optional primary color branding on surfaces. The created themes are based on the same concept as Flutter’s ColorScheme based themes, but with a few interesting twists and convenience features. For more information about FlexColorScheme, its background and use cases, this package companion blog post and article is ..
Sysnavbar with FlexColorScheme Transparent Android system navigation bar with Flutter and FlexColorScheme. About this Example This an extra Android companion example to the Flutter package FlexColorScheme. It is a slight modification of example nr 5 bundled with the package and shows how FlexColorScheme can be used to make a transparent system navigation bar in Flutter Android ..
SoundCloud Audio Player for Flutter SoundCloud style audio player in Flutter Features Requirements FAQ License Features SoundCloud Audio Player Value types powered by built_value and built_collection State management by bloc Load data from local assets Requirements Flutter: the latest version on flutter dev channel Dart: 2.10.0+ Xcode: 11.5+ Android Studio 4.0.0+ Ruby: 2.4+ CocoaPods: 1.10.0+ Flutter & Dart plugins: Visual ..
ss_bottom_navbar Flutter modern bottom nav bar. Compatible with Android & iOS. You can customize it freely. Getting Started dependencies: ss_bottom_navbar: 0.1.0 $ flutter pub get import ‘package:ss_bottom_navbar/src/ss_bottom_navbar.dart’; Example SSBottomNav Usage Create Items final items = [ SSBottomNavItem(text: ‘Home’, iconData: Icons.home), SSBottomNavItem(text: ‘Store’, iconData: Icons.store), SSBottomNavItem(text: ‘Add’, iconData: Icons.add, isIconOnly: true), SSBottomNavItem(text: ‘Explore’, iconData: Icons.explore), SSBottomNavItem(text: ..
Messenger Chat Head Tried to clone the famous Chat Heads by Facebook Messenger using Flutter. ???? Issues are reported in the bottom of README, feel free to contribute 🙂 Here’s the Look Demo Issues As far as I’m aware of what can be improved here: Make the Chat Head float even when the app is ..
countdown A simple countdown tracker app. It allows you to create, modify and delete upcoming and past countdowns. Persistence When creating countdowns, the raw data is persisted on the local system as .json file. On Linux it is stored in ~/Documents/countdowns.json. How to build it On iOS Open project on your Mac in Xcode and ..
flutter_qjs This plugin is a simple js engine for flutter using the quickjs project with dart:ffi. Plugin currently supports all the platforms except web! Getting Started Basic usage Firstly, create a FlutterQjs object, then call dispatch to dispatch event loop: final engine = FlutterQjs( stackSize: 1024 * 1024, // change stack size here. ); engine.dispatch(); Use evaluate method to run js script, now you ..
color_generator A Flutter color generator app built with Cubit + Freezed Printscreen This a application generates color from RGB and Hexadecimal values. Download Flutter color generator app source code on GitHub https://github.com/e200/color_generator FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
Paypal Redesign UI App (Challenge) This project is developed for iOS & Android, using Flutter and inspired by the winner Vadim Demenko of the Uplabs paypal-app-redesign See more on: Uplabs Challenge. Getting Started Clone the repository Install the dependicies Run it Getting Started For help getting started with Flutter, view our online documentation. Download Flutter UI redesign project source code ..
Flutter Summernote Text Editor in Flutter for Android and iOS to help free write WYSIWYG HTML code based on Summernote 0.8.18 javascript wrapper. NOTICE This package dependent to the Official WebView Plugin. In this package can’t add image, video, or another file using editor toolbar. To handle attach image this package give you another solution using ..
extended_tabs A powerful official extension library of Tab/TabBar/TabView, which support to scroll ancestor or child Tabs when current is overscroll, and set scroll direction and cache extent. Web demo for ExtendedTabs extended_tabs Usage ColorTabIndicator Link ScrollDirection CacheExtent Usage dependencies: flutter: sdk: flutter extended_tabs: any ColorTabIndicator Show tab indicator with color fill TabBar( indicator: ColorTabIndicator(Colors.blue), labelColor: ..
Flutter Input Widgets – Standalone or within a Form → flutter_input This package provides input widgets (fields) to manipulate data. The data to manipulate is either a single variable or an entry in a map. The map can even be nested. Parameter path defines the key to access the entry in the map. To access an entry in a ..
flutter_earth A Flutter earth widget. Getting Started Add flutter_earth as a dependency in your pubspec.yaml file. dependencies: flutter_earth: ^0.0.4 import ‘package:flutter_earth/flutter_earth.dart’; … … @override Widget build(BuildContext context) { return Scaffold( body: Center( child: FlutterEarth( url: ‘http://mt0.google.com/vt/lyrs=y&hl=en&x={x}&y={y}&z={z}’, radius: 180, ), ), ); } Screenshot Download Google Earth Widget source code on GitHub https://github.com/zesage/flutter_earth FlutterappworldProvides the list ..
Flutter Stage A widget that positions its children in a 3D scene. Getting Started Add flutter_stage as a dependency in your pubspec.yaml file. dependencies: flutter_stage: ^0.0.1 Import package. import ‘package:flutter_stage/flutter_stage.dart’; … … class _MyHomePageState extends State<MyHomePage> { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: Text(widget.title), ), body: Stage( onSceneCreated: (Scene scene) { ..
Panorama A 360-degree panorama viewer. Getting Started Add panorama as a dependency in your pubspec.yaml file. dependencies: panorama: ^0.1.0 Import and add the Panorama widget to your project. import ‘package:panorama/panorama.dart’; … … @override Widget build(BuildContext context) { return Scaffold( body: Center( child: Panorama( child: Image.asset(‘assets/panorama.jpg’), ), ), ); } Screenshot Download Panorama Flutter Widget source ..
flutter_fragments flutter fragment effect Getting Started Add this to your package’s pubspec.yaml file: example Default effect Transition effects. Number of custom fragment Size fragment Download Flutter Fragment Effect source code on GitHub https://github.com/wuweijian1997/fragments FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
The official BottomAppBar can only display a notch FAB with app bar, sometimes we need a convex FAB. This ConvexAppBar is inspired by BottomAppBar and NotchShape’s implementation. Online example can be found at https://appbar.codemagic.app. convex_bottom_bar is now a Flutter Favorite package! Here are some supported style: fixed react badge chip fixedCircle reactCircle flip textIn titled tab image button ..
GraphX™ | rendering | prototype | design | Making drawings and animations in Flutter extremely simple. WARNING: this lib is on alpha stage, the api can change. NOTE: GraphX™ uses the $ prefix convention for all internal and private members (properties and methods). DO NOT call them in your code… is meant to be consumed internally by the lib, it will ..
icon_picker A Flutter widget to show an icon collection to pick.This widget extend TextField and has a similar behavior as TextFormField Usage In the pubspec.yaml of your flutter project, add the following dependency: dependencies: … icon_picker: “^1.1.0” In your library add the following import: import ‘package:icon_picker/icon_picker.dart’; For help getting started with Flutter, view the online documentation. Example IconPicker ..
date_time_picker A Flutter widget to show a text form field to display a date or clock dialog.This widget extend TextField and has a similar behavior as TextFormField Usage In the pubspec.yaml of your flutter project, add the following dependency: dependencies: … date_time_picker: “^1.1.0” In your library add the following import: import ‘package:date_time_picker/date_time_picker.dart’; For help getting started with ..
flutter_unicons 1000+ Pixel-perfect svg unicons for your next flutter project ispired by Unicons and vue-unicons Demo Download the gallery app using google drive or get the apks here . Installation Add dependency to your pubspec.yaml dependencies: flutter_unicons: 0.0.1 Usage import ‘package:flutter_unicons/flutter_unicons.dart’; class Demo extends StatelessWidget{ @override Widget build(BuildContext context) { return SafeArea( child: Column( children: [ Unicon(UniconData.uniLayerGroup), Unicon(UniconData.uniCommentAlt) ] ) ); } } ..
2itemAnimatedFabMenu | In Progress. An easy implementation of an animated FAB menu with 2 FAB descendants using AnimatedAlign widget. Usage Case 1: Screens that do not require keyboard input Works with code as it is. Case 2: Screens with keyboard input Wrapping the FABs with Visibility widget with visible:false when the user opens the keyboard hides the menu as ..
Gif Finder About A simple Gif Finder made with Flutter .With this application you can see gifs that are hot on Giphy, being able to share them on your social networks or via link.It was developed using the Giphy API.This application is in version 1.1. Preview > Is acellerated by 1.5, and in the demo folder. Challenges and Learnings ..
Flex ColorPicker The Flex ColorPicker is a configurable color picker for Flutter. The ColorPicker can show anywhere from 1 to 6 different color picking tools that you can use to choose colors from. The different color selection choices are: Material primary colors and its shades. ColorPickerSwatch.material Material accent colors and its shades. ColorPickerSwatch.accent Material primary and accent colors and ..
Chat App Chat with your friends, family, and anyone else you want to chat with! Live Coding Video on YouTube (Part 1)Live Coding Video on YouTube (Part 2)Live Coding Video on YouTube (Part 3) Skills Used Firebase’s Cloud Firestore Add, update, and delete documents Complex collection and document management Hero animations Animated text library Flexible ..
Intro to Flutter – Lewis Capaldi App Welcome to the Intro to Flutter event hosted by DSC Texas A&M Today’s session will be a simple UI crash course. The app we’ll be making is a Lewis Capaldi app. Screenshot Structure The app has been divided into steps. Each step has starter and solution code. You can access each ..
GameBase A flutter application that serves as a front-end application for GameBase. GameBase is a game library that lets you review games and list your favorite games. Demo Current Build Status Authentication is already established, refresh tokens is not yet implemented Tasks The following must be finished by this week October 25, 2020 Home Page ..
Short Intro: It’s OK to love Flutter and hate hand-coding design elements. Parabeac-Core converts design files into Flutter code. Parabeac-Core Parabeac-Core is an open-source repository that converts design files into Flutter code. · Designer Protocol · Understanding the code export · Contribute · Community · Dev.to Special Shout out if you’re here for #HacktoberFest! Double your swag by contributing to Parabeac as one of ..
Flutter-GitConnect Github mobile app built in flutter framwork. App preview:- Youtube Download App Screenshots Home Inbox Search Repositries Issues People Profile Repository Gists Followers Settings About us Profile (Light Theme) Home (Light Theme) Inbox (Light Theme) Search (Light Theme) Dependencies intl dio share get_it graphql equatable flutter_bloc url_launcher google_fonts build_context webview_flutter shared_preferences cached_network_image Features Login with ..
Banana Stats A Flutter application, visualizing your sports activity data. Idea The data you enter will be saved only locally, on the very device you enter it. There is no communication involving your data with any servers, your data will stay in your hands. Add your data for four different activity types, see your stats, set ..
VLC Player Plugin A VLC-powered alternative to Flutter’s video_player that supports iOS and Android. Installation iOS For iOS, you need to opt into the Flutter embedded views preview.This is done by adding the following to your project’s <project root>/ios/Runner/Info.plist file (see example for details): <key>io.flutter.embedded_views_preview</key> <true/> If you’re unable to view media loaded from an external source, ..
flappy_search_bar A SearchBar widget handling most of the search cases. Usage To use this plugin, add flappy_search_bar as a dependency in your pubspec.yaml file. Example Try it A sample app is available to let you try all the features ! 🙂 Warning If you want to use a SearchBarController in order to do some sorts ..
flutter_medical Functioning Doctor/Healthcare Catalog & Scheduling App created using Dart with Flutter. Stores and loads data from Firebase Firestore DB. Screenshot Meta John Uberbacher – johnuberbacher.com Installation clone repo flutter pub get flutter run License Distributed under the The MIT License (MIT) Copyright (c) 2020 John Uberbacher Permission is hereby granted, free of charge, to any ..
seasoncalendar This app is a practical and easy to use tool showing you which kinds of fruit, vegetables, salads etc. are in season right now. Foods that are produced regionally are often times cheaper, tastier and better for the environment due to a shorter and more convenient transport. While currently available only in German and ..
appbar_elevation A Flutter Widget for an AppBar that is initially flush with the body and elevated when scrolled. Usage Use the ScrollActivatedAppBarElevation widget to wrap a Scaffold that contains a Scrollable view (e.g. ListView, CustomScrollView). The widget uses a NotificationListener to detect the scroll position and provides an appBarElevation value to be used. Example @override Widget build(BuildContext context) { return ScrollActivatedAppBarElevation( ..
A Flutter package for building Flutter widget tree from HTML with support for 70+ most popular tags. Live demo Getting Started Add this to your app’s pubspec.yaml file: dependencies: flutter_widget_from_html_core: ^0.5.1+3 Usage Then you have to import the package with: import ‘package:flutter_widget_from_html_core/flutter_widget_from_html_core.dart’; And use HtmlWidget where appropriate: HtmlWidget( // the first parameter (`html`) is required ”’ <h1>Heading 1</h1> <h2>Heading ..
