Category : Flutter App

flutter_unity_widget Flutter unity 3D widget for embedding unity in flutter. Now you can make awesome gamified features of your app in Unity and get it rendered in a Flutter app both in fullscreen and embeddable mode. Works great on Android, iPad OS and iOS. There are now two unity app examples in the unity folder, ..

Read more

Flutter Chat app using MQTT. The Broker should install HiveMQ Chat-Extension first. Screenshots Login Rooms Chat Profile Contact details Media messages Features  Login  Send & receive messages  Typing indicator  Send Files  Persist User, Messages and rooms using local database  ChatMarker (In Progress)  Invite a user to chat  Group Chat  Presence  File Previews (PDF and images Done)  Push ..

Read more

Noise meter Sound meter. Made with Flutter. Null safety  Dependencies Name Link noise_meter https://pub.dev/packages/noise_meter syncfusion_flutter_charts https://pub.dev/packages/syncfusion_flutter_charts url_launcher https://pub.dev/packages/url_launcher google_fonts https://pub.dev/packages/google_fonts Download Noise meter app source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

About: A Web API developed using Dart as backend, which hosts the data from a local json file. A server app built using Shelf, configured to enable running with Docker. This sample code handles HTTP GET requests to /api and returns a JSON response from a local file. So how does it work ? The dart code reads data ..

Read more

 Skype Clone  Cloned Skype App using Flutter & Firebase Installation Steps Clone the repository git clone https://github.com/Rohit19060/skype_clone.git Go into the Project Directory Install dependencies flutter pub get Run the app flutter run/Flutter run –release  Available Commands Install dependencies flutter pub get Run the app flutter run/Flutter run –release  Built with Flutter Firebase  Directory Structure main.dart: ..

Read more

Multi Image Tracker A flutter package which makes it easy to track a series of images. Installation In the dependencies: section of your pubspec.yaml, add the following line: dependencies: multi_image_tracker: <latest version> Usage Import this class import ‘package:multi_image_tracker/multi_image_tracker.dart’; multi image tracker MultiImageTracker( images: [Image.asset(‘assets/day1.jpg’), Image.asset(‘assets/day2.jpg’), Image.asset(‘assets/day3.jpg’)], width: MediaQuery.of(context).size.width, height: MediaQuery.of(context).size.height, clipFactor: 0.6, ), Download Multi Image Tracker package ..

Read more

Animated Navigation Bar A Flutter implementation of a customizable navigation bar with animations. Getting started Add the following dependency in the pubspec.yaml of your Flutter project : dependencies: … animated_navigation_bar: Import the package : import ‘package:animated_navigation_bar/animatedNavBar.dart’; If you need help getting started with Flutter, head over to the official documentation documentation. Constructors You can create an AnimatedNavBar by calling its ..

Read more

About: A Flutter package for using Jalali (Shamsi, Solar, Persian or Jalaali) calendar. You can convert, format and manipulate Jalali and Gregorian (Miladi) dates. This is a pure dart package and Algorithm is based on popular JavaScript library jalaali-js with more than 20k monthly downloads. This package has a lot of unit tests with high test coverage ..

Read more

Personal Portfolio This project made with Flutter and hosted in the website. About Website This website is built taking the screen into account. It adjusts different layout for desktop version, mobile portrait version and mobile landscape version. This website unlike other flutter websites handles the cursor when hovered at a button or clickable. Build the website ..

Read more

neon_circular_timer Make a timer application with a fancy neon effect and beautiful UI v0.0.3 and above now the timer has also a neumorphic border Preview of example Usage NeonCircularTimer( width: 200, duration: 20, strokeWidth: 10, textFormat: TextFormat.MM_SS, isTimerTextShown: true, neumorphicEffect: true, textStyle: Theme.of(context).textTheme.headline3, outerStrokeColor: Colors.grey.shade100, fillGradient: LinearGradient(colors: [ Colors.greenAccent.shade200, Colors.blueAccent.shade400 ]), neonGradient: LinearGradient(colors: [ Colors.greenAccent.shade200, Colors.blueAccent.shade400 ..

Read more

Speed Coding – Nubank This project aims to reproduce the interface of the Nubank app’s home screen. As always, there is no sponsorship involved and no outside investment in any way. The purpose of this repository is purely for studies. Getting Started clone the project execute command flutter pub get run the project Download Nubank home screen ..

Read more

luizdebank  demo2.mp4  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 mobile development, ..

Read more

top-snackbar-flutter Made in lanars.com. If you need to show the user some information in a nice way, you can use this package. The API is as simple as API for regular Material method showDialog. If you need to use your own widget to display, you can pass it into showTopSnackBar function. Getting Started In order to show a CustomSnackBar ..

Read more

Motivation soTired is an application for cognitive fatigue assessment. It includes a stand-alone Android app for fatigue detection and an additional part for data management and further analysis. The project is structured as client side (stand-alone app) implemented in Dart/Flutter and a server side (data management) written in Golang. Besides Android, Dart/Flutter provides the ability ..

Read more

Dashed Rect This package allows you to draw dotted lines with Flutter. You can draw a beautiful dotted line. Screenshots Usage Example To use this package : add the dependency to your pubspec.yaml file. dependencies: flutter: sdk: flutter dashed_rect: ^0.0.3 How to use Container( color: Colors.red, height: 600, width: 300, child: const DashedRect( color: Colors.grey, gap: 1, ..

Read more

Flutter Google OAuth An OAuth authentication system built in Flutter using Google OAuth. To run it locally: Generate the .jks file after configuring your Google cloud console and paste it in the android/app/ directory. Make a new file called keystore.config and fill it keys by looking at the keystore.sample.config file. Make a .env file in the root of this project and fill in ..

Read more

love A state management library that is functional, elegant and predictable. Why love has DNA of ReactiveX, Redux and RxFeedback. so it is: Unified – one is all, all is one (System<State, Event>) Declarative – system are first declared, effects begin after run is called Predictable – unidirectional data flow Flexible – scale well with complex app Elegant – code ..

Read more

Do you ever want to pub run build_runner build into another branch? This is your ticket. Install $ pub global activate peanut Run $ cd ~/my_dart_proj/ $ peanut This will build your project into a temporary directory, and then it will update the local gh-pages branch with its contents. Flutter Flutter apps can be built by running peanut with ..

Read more

flutter_incoming_call A Flutter plugin to show incoming call in your Flutter app! Alpha version(not ready for production!) Usage To use this plugin: Configure android project: Just add to your manifest activity and receiver. Configure Flutter plugin: Listen events: Call api: Demo ios ios (Lockscreen) Android Android (Lockscreen) Example Check out the example in the example ..

Read more

Clima  Beautiful, minimal, and fast weather app. (Requires Android 6.0 or later) Features  Beautiful, minimal UI  5-day forecast  Dark and light themes  No ads or trackers Download weather app source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Notes  My notes, todo list, and memories. Android iOS macOS web x x Guest Login Memories Share memory info Confirm empty trash How to run? Follow FlutterFire Overview to learn how to setup firebase and then add your google-services.json (Android) and GoogleService-Info.plist (iOS). Download my notes app source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with ..

Read more

Flutter Social Media Integeration A Flutter app based on the design of the Social Media Integeration App, created by Achmad Rizki Nur Fauzie, Features Login with google Login with Facebook After Login, show details ( profile picture, name, email ) Clean Code Clean UI Getting Started  – Clone the repo – Install the dependicies – Run ..

Read more

r_crypto Rust backend support crypto flutter library, much faster than Dart-implementation library, light-weight library. Some crypto support hardware accelerate. Support Algorithm Hashes MD5 SHA1 SHA2 SHA224 SHA256 SHA384 SHA512-trunc224 SHA512-trunc256 SHA3 SHA3-224 SHA3-256 SHA3-384 SHA3-512 SHAKE-128 SHAKE-256 KECCAK224 KECCAK256 KECCAK384 KECCAK512 Whirlpool Blake2 Blake2b Blake2s Blake3 Groestl Groestl224 Groestl256 Groestl384 Groestl512 GroestlBig GroestlSmall RIPEMD160 (RIPEMD-320 ..

Read more

Advanced Icon A flutter package which contains collection of icon decoration tools such as gradient, opacity and icon transition feature with cool animation effects.  See live example. Installing With flutter run this command flutter pub add advanced_icon This will add a line like this to your package’s pubspec.yaml (and run an implicit flutter pub get): dependencies: advanced_icon: ..

Read more

Cool linter This is a custom linter package for dart/flutter code. It can set linter for exclude some of words. This words you can set in analysis_options.yaml by example below Usage 1. Add dependency to pubspec.yaml dev_dependencies: cool_linter: ^1.2.0 # last version of plugin 2. Add configuration to analysis_options.yaml analyzer: plugins: – cool_linter cool_linter: extended_rules: – always_specify_stream_subscription – prefer_trailing_comma ..

Read more

sura_flutter A flutter package from AsurRaa for widgets and utility functions Migrate from 2.x to 3.x BREAKING CHANGE: remove FutureManager, AsyncSubjectManager, FutureManagerBuilder All manager class now has a separate package dependencies: sura_manager: any Installation Add this to pubspec.yaml dependencies: sura_flutter: ^0.4.2 Widgets Widget Description SuraRaisedButton Custom ElevatedButton with loading notifier SuraBadge Small badge like notification ..

Read more

Nest M.U.D – Getting Started Getting Started How to Play API Design A M.U.D (multi user dungeon) with a back end API built with nestjs and a front end UI built with Flutter. Server  Look at what these scripts actually do before running them! Setup Attempts to install nvm, node, yarn, nestjs and package.json defined dependencies. cd server ./script/setup Start Server Starts a postgres database in a docker container, ..

Read more

Short Intro: Dart GraphQL server implementation and utilities. Data loader, code generator, examples and reference implementation. A complete implementation of the official GraphQL specification, in the Dart programming language. The goal of this project is to provide to server-side users of Dart an alternative to REST API’s. Included is also package:angel_graphql, which, when combined with the Angel framework, allows ..

Read more

A GBK codec library for Dart developers. GBK codec, support Stream interface of File and HttpClient. The usage is exactly the same as the utf8 codec. Created from templates made available by Stagehand under a BSD-style license. version fast_gbk: 1.0.0 Usage A simple usage example: Import ‘Package: fast_gbk / fast_gbk.dart’ ; void main () the async { ..

Read more

 Shop State Management  App for Shop Management and State Management Learning  Links   Repo ·  Got Issue  Features Authentication System Using Firebase Auth Add Products Place order Manage Products  Installation Steps Clone the repository git clone https://github.com/Rohit19060/shops_state_management.git Go into the Project Directory Install dependencies flutter pub get Run the app flutter run/Flutter run –release  Available Commands Install dependencies ..

Read more

 Save You  Flutter Application for #Hack20 based on theme Saving the Planet, This app is for showing you what is the current rate of pollution on google map  Links   Repo ·  Got Issue  Features Add Your Own Guide Air Tracker Awesome UI  Installation Steps Clone the repository git clone https://github.com/Rohit19060/Save-You.git Go into the Project Directory Install dependencies ..

Read more

Short Intro: Provides the ability to lock the screen on ios and android. Biometric authentication can be used in addition to passcode. This Flutter plugin provides an feature for screen lock. Enter your passcode to unlock the screen. You can also use biometric authentication as an option. Attention A detailed API description will be provided ..

Read more

flutter_auth_MVVM For Server Connection(NodeJs Server) git clone https://github.com/ahmetfturgut/nodejs-server.git 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, ..

Read more

Converter NOW Why Converter NOW Converter NOW is an effective unit and currency converter  It is made to be easy, fast and immediately useable: just start typing and immediately you have the real-time conversion with all the other units of measurement  It is customizable: the units can be reorganized according to your priorities and your use case  It integrates a Calculator that let ..

Read more

native_context_menu Native context menu for flutter apps Installation flutter pub add native_context_menu Usage import ‘package:native_context_menu/native_context_menu.dart’; import ‘package:flutter/material.dart’; void main() { runApp(App()); } class App extends StatefulWidget { const App({Key? key}) : super(key: key); @override State<App> createState() => _AppState(); } class _AppState extends State<App> { String? action; @override Widget build(BuildContext context) { return MaterialApp( home: Scaffold( ..

Read more