Category : Flutter App

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more

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

Read more