Category : Flutter App

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

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 Flutter Earth Widget source code on GitHub https://github.com/zesage/flutter_earth FlutterappworldProvides the list ..

Read more

Compass This is a multiplatform Flutter app that uses the magnetometer, accelerometer, location sensors to get the current direction, location, weather, temperature, humidity. The Flare asset: compass.flr earth.flr weather.flr Screenshot Download Flutter Compass app source code on GitHub https://github.com/zesage/flutter_compass FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Panorama A 360-degree panorama viewer. Getting Started Add panorama as a dependency in your pubspec.yaml file. dependencies: panorama: ^0.0.2 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 306 viewer widget ..

Read more

Flutter Cube A Flutter 3D widget that renders Wavefront’s object files. Getting Started Add flutter_cube as a dependency in your pubspec.yaml file. dependencies: flutter_cube: ^0.0.4 Add Wavefront’s object files to assets. flutter: assets: – assets/cube/cube.obj – assets/cube/cube.mtl – assets/cube/flutter.png Import and add the Cube widget to your project. import ‘package:flutter_cube/flutter_cube.dart’; … … @override Widget build(BuildContext ..

Read more

COVID-19 Tracker A simple Flutter app to track COVID-19 cases. The data we provide is collected from World Health Organization (WHO), the US Centers for Disease Control and Prevention (CDC), the Chinese Centre for Disease Control and Prevention (ECDC), China’s National Health Commission, and Chinese website DXY which provides regional case estimates faster than the national level reporting organizations. ..

Read more

stripe_fl stripe A native Dart SDK for Stripe. Documentation Initializing import ‘package:stripe_fl/stripe_fl.dart’; Stripe.init( production: false, publicKey: ‘PUBLIC_KEY’, secretKey: ‘SECRET_KEY’, useLogger: true); Generating Charge Tokens Response<CardToken> cardObject = await Tokenize().card( cvc: ‘cvc’, expiryMonth: month, expiryYear: year, number: ‘number’, name: ‘full name’, phone: ‘phone ‘); Response CardToken { id=tok_1FqzkhDiaj1muI06cZdNlXCt, object=token, card=Card { id=card_1FqzkhDiaj1muI06aHc1QnaR, object=card, addressLine1=2348113823269, addressLine1Check=unchecked, brand=Visa, ..

Read more

call_them_app A new Flutter project. Getting Started This project is a starting point for a Flutter application. Download call them app source code on GitHub https://github.com/Zfinix/let-them-know FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

kanban A flutter desktop UI implementation. Notes (Apply Caution) For some reason ReorderableListView has a Material Widget with a shadow i had to remove mine to make the UI cleaner the file is at: /flutter/packages/flutter/lib/src/material/reorderable_list.dart Download kanban desktop app source code on GitHub https://github.com/Zfinix/kanban FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. ..

Read more

UBER CLONE MADE WITH FLUTTER + FIREBASE ScreenShots Pull Requests I welcome and encourage all pull requests. It usually will take me within 24-48 hours to respond to any issue or request. Download Uber Clone app source code on GitHub https://github.com/MarcioQuimbundo/uber_clone FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Animated Floating Button Made in a flutter. Download Animated Floating button source code on GitHub https://github.com/Puruchandra/AnimatedFloatingButton FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

C-19 Stats This repository has simple Covid-19 data monitoring app. The app is built with flutter. NOTE – Download the latest apk from here –  Note: You can get the latest apk from – GoogleDrive Library References GetFlutter HTTP CHARTS FLUTTER License Download global pandemic Covid-19 app source code on GitHub https://github.com/Puruchandra/C-19 FlutterappworldProvides the list of ..

Read more

Online UI Challenge Code Code for online UI Challenge held on 23rd May, 2020 by our Community Flutter Islamabad Pakistan Design to Code Design Inspiration Excellent WebWorld at Dribble Download Flutter app UI source code on GitHub https://github.com/m-hamzashakeel/UI_Challenge_Code FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

COVID19 Tracker App info: It’s a dedication to my closest friend who has been tested positive for COVID. Please take care of yourself and your family. Stay home, Stay Safe! A live tracker for COVID19 stats across the Globe and my Home country Pakistan. It uses APIs so the data is live, not static App ..

Read more

The Holy Qur’an Application of Holy book of Muslims, Al-Qur’an. Developed using Flutter The data is fetched using API. So, it is not being stored locally. Information about API is given at the bottom of README.md Screen Shots API Information API Used: https://alquran.cloud/api Download The Holy Qur’an app source code on GitHub FlutterappworldProvides the list of ..

Read more

flutter_custom_clippers Flutter package that provides you custom clippers to help you achieve various custom shapes. Usage To use this plugin, add flutter_custom_clippers as a dependency in your pubspec.yaml file. Contributors Damodar Lohani Siddhartha Joshi Screenshot Example import ‘package:flutter/material.dart’; import ‘package:flutter_custom_clippers/flutter_custom_clippers.dart’; void main() => runApp(MyApp()); class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return MaterialApp( home: HomeScreen(), ..

Read more

AuthPass.app – Open Source Password Manager for mobile and desktop AuthPass – Password Manager based on Flutter for all platforms. Keepass 2.x (kdbx 3.x) compatible. Mac Desktop: Mac App Store or check the releases Android: Google Play Store or F-Droid iOS: App Store Linux Desktop: Check out our blog post for installation instructions Roadmap/TODOs see also https://github.com/authpass/authpass/issues  Read/Decrypt kdbx 3.x using password  Download of ..

Read more

Dart OpenApi Code Genenrator openapi_code_builder generates server stubs and client libraries for open api schema yaml files. This is a build_runner library meant to be included in the dev_dependencies of your project to allow generating of dart source files for client and server stubs for OpenAPI 3.0 schema files (Only yaml is supported right now). See directory for an example usage. ..

Read more

Gravatar An easy-to-use library for generating gravatar image urls in Dart. For more information about Gravatar please visit https://gravatar.com Example Which will return https://secure.gravatar.com/avatar/658b1158409b348bb2cb3e5bef734d1b API imageUrl({int size, String defaultImage, bool forceDefault: false, String rating}) Generates an image url size (Imagesize) defaultImage (Url or Kind for the Fallback Image) forceDefault (force the Fallback Image) rating (restrict to appropriate Images) ..

Read more

Dash Run Remember the days of 8bit computing where we only had a few Kb to play with, the games were very simple and the graphics terrible? This is my take on an 8bit game, with simple game play and terrible graphics! This game is ‘loosely’ based on Centipede. Introduction Dash and the Dashlets have ..

Read more

A library for searching for podcasts (via iTunes), parsing podcast RSS feeds and obtaining episodes details. Usage Search for podcasts with ‘widgets’ in the title and find the top podcasts. Both examples limit to 10 results and are set for the United Kingdom: import ‘package:podcast_search/podcast_search.dart’; main() async { var search = Search(); /// Search for ..

Read more

Accept Payments Using Google Pay With Stripe In Flutter Use the Stripe to start accepting Google Pay in your Android apps. Setup Firebase CLI To implement Cloud Function Go to Firebase Console in your project then click on the Functions tab from the drawer.Run the following commands in terminal :  npm install -g firebase-toolsfirebase init After running the last ..

Read more

flutter_svg Draw SVG (and some Android VectorDrawable (XML)) files on a Flutter Widget. Getting Started This is a Dart-native rendering library. Issues/PRs will be raised in Flutter and flutter/engine as necessary for features that are not good candidates for Dart implementations (especially if they’re impossible to implement without engine support). However, not everything that Skia can easily ..

Read more

Furniture App – Flutter UI Packages we are using: flutter_svg: link goole_fonts: link Fonts Poppins link We design two pages one is the product page with a search bar at the top then the category list at the end list of products. And another one is the details page provides you more details about the product like price, ..

Read more

perspective_pageview With this, you will be able to create 3D Perspective PageView in Flutter Easily Getting Started This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects. For help getting started with Flutter, view our online documentation, which offers tutorials, samples, ..

Read more

MultiLevel Drawer An easy to implement Multi-Level Drawer for Flutter Applications. Just use this in place of regular Scaffold Drawer and you are ready to go. Current Features Add MultiLevel Drawer to Selected Items Change Color of Main and Sub menu According to Your Application Needs. Demo Usage To Use, simply add MultiLevelDrawer to your ..

Read more

Foldable Sidebar An easy to implement Foldable Sidebar Navigation Drawer for Flutter Applications. Current Features Initial Release for Foldable Navigation Sidebar Demo Usage To Use, simply add FoldableSidebarBuilder to your Scaffold’s body, as follows: Important Enums: Download Fancy Foldable Sidebar source code on GitHub https://github.com/retroportalstudio/foldable_sidebar FlutterappworldProvides the list of the opensource Flutter apps collection with ..

Read more

Flutter Item Stack ListView 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, guidance on ..

Read more

Info: This is a repository for Flutter Focused Menu, an easy to implement package for adding Focused Long Press Menu to Flutter Applications. Focused Menu This is an easy to implement package for adding Focused Long Press Menu to Flutter Applications Current Features Add Focused Menu to Any Widget you Want Customizations to change The ..

Read more

Social Media Widgets – package A new flutter package for collection of common popular social media widgets Currently available widgets Snapchat screen dismiss – By swiping down Instagram story swipe Adding basic Snapchat screen dismiss Here we are navigating to another screen and applying the Snapchat screen dismiss Adding basic Snapchat screen dismiss with the ..

Read more