Category : Flutter App

DoneIt  DoneIt is a sample note app  Flutter application  built to demonstrate use of Clean Architecture tools. Dedicated to all Flutter Developers with . About It simply loads Notes data from in memory database. Notes will be always loaded from in memor database. This makes it offline capable . Clean and Simple Material UI. It supports dark theme too . Directory Structure Architecture This app ..

Read more

A new Flutter app project to manage tasks. 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 samples For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API ..

Read more

ANSWER 1.Native applications are applications that are built with a specific programming language for a particular platform. A popular example is the use of the Objective-C or Swift programming language for the iOS (Apple) platform. The Android platform uses the Java programming language. Hybrid apps are web apps that are transformed into native code on platforms like iOS ..

Read more

MOBCAR Application that allows you to create, list, edit and delete cars. Vehicle registration is done with data consulted in the FIPE API HTTP REST ( https://deividfortuna.github.io/fipe/ ), containing a list of brands, models according to brands, years available per model and the value according to the table FIPE Installation | Execution Clone this repository by running the command: With the ..

Read more

A new Flutter project. News App User Interface Application Screens User Interface Download this news app source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Compared to the given ReorderableListView, it is possible to reorder different sizes of widgets with or without animation. Features Use this package in your Flutter App to: Enable a reordering logic with different widgets Simplified widget Works with all kind of widgets that are rendered inside Animated when reordering items Getting started Simply add ReordableGridView to your preferred ..

Read more

About This App design is used as patient monitoring such as medicine intake reminder and schedulled activities. Application design is based on Medical App Freebies! designed by Sub1 Screenshots Home Page Details Page Download this app design source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

BMI-Calculator Body mass index (BMI) is a measure of body fat based on height and weight that applies to adult men and women. Here is the simple program for BMI calculator in Flutter. main file paste to <flutter-project>/lib/ Flutter calculator ui Download BMI-Calculator app source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps ..

Read more

arowana A lightweight HTTP server framework for Dart.It is based on the shelf library for handling HTTP requests and implements a high-performance routing with reference to Golang’s Gin framework. Usage A simple usage example: import ‘dart:isolate’; import ‘package:arowana/arowana.dart’; class MyAChannel extends DefaultChannel{ @override Future prepare() { print(‘current isolate [${Isolate.current.debugName}]’); return super.prepare(); } @override void entryPoint() { get(‘/hello’, ..

Read more

HaslTy This application helps to keep track of what money is spent in order to help save. Tools State management (BLoC). Local database (sqflite package). Localization & date formatting & Number formatting (intl). Store and retrieve persistence data easily (shared preferences). Show splash screen (flutter native splash). Using Svg assets. Using font awesome to show ..

Read more

Show some  and star the repo to support the project Flutter Shopping app example In this project I use Getx for State management, Dio for HTTP client and Hive for the local database. Products api is for fakestoreapi. This example learn you how to: Setup getx and sizer in main.dart Initializes hive and registers adapter in main.dart Get data from server with dio ..

Read more

profile A new Flutter project. Getting Started This project is a starting point for a Flutter application. Project includes with professional pattern of UI in addition i used setstate() function SplashScreen map physics widget timerfunction BottomNavigatorBarwidget Stack widget ListView.Seperated() statefull functionilities Download Job Profile UI source code on GitHub FlutterappworldProvides the list of the opensource ..

Read more

A Flutter project that can be handy for burger joints. It allows customer to view available burger options and place order Inspired By  https://www.figma.com/file/RqhG3mhqLEk4GJPDUc8qVJ/Burger-(Copy)?node-id=0%3A1 Screenshots  Homescreen Product Detail Screen Account Screen Current Features  Bloc implementaion of Bottom Navigation Bar Beautiful Designs Upcomming Features  Product Cart using Bloc pattern along side Faker Clean Bloc Architecture for ..

Read more

Ui Clone of the Nequi application This design has been created for educational purposes. Also this project has integrated push notifications with firebase and my own server in python. if u want to try just put the app in background mode and search this in your browser https://juansuarezz-servidorflask.zeet.app/message Final Result. Getting Started Just git clone and ..

Read more

Overview  The goal of this package is to make it easy to interact with Cloud Firestore API. The firefuel community aims to always make this package simple, intuitive, and consistent. firefuel wraps the cloud_firestore plugin, and provides conventions to help jump-start your development. Still not convinced? See our documentation on why we thing you should choose firefuel Scope  firefuel focuses on simplifying the edge ..

Read more

Mobile Banking App inspired by Twinkle Creative. 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, and a full API reference. FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Video Call Flutter App (SFUs Architecture) Description: This is sandbox video call application using Flutter and WebRTC. SFUs – Selective Forwarding Units In this case, each participant still sends just one set of video and audio up to the SFU, like our MCU. However, the SFU doesn’t make any composite streams. Rather, it sends a ..

Read more

A Food DashBoard project with frontend (Flutter) & backend (Spring Boot) Backend repo: https://github.com/zhansheng97/food_dashboard_backend The Design is based on the UI Design from dribble https://dribbble.com/shots/15844040-I-Food-Dashboard Pages Sign In Pages Home Pages Restaurant Management Pages Features Sign Up / Sign In Get Restaurant Add Restaraunt Update Restaurant Delete Restaurant Sign In Pages Home Pages Restaurant Management Pages ..

Read more

chat_app Download chat app source code on GitHub https://github.com/MahmooudGaaber/ChatApp FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

async_call_queue AsyncCallQueue is a Dart class which provides a queuing mechanism to prevent concurrent access to asynchronous code. Getting Started Add this to your app’s pubspec.yaml file: dependencies: async_call_queue: ^1.0.0 Usage Then you have to import the package with: import ‘package:async_call_queue/async_call_queue.dart’; And use AsyncCallQueue where appropriate. Some examples: // This is the control. The delayedWrite1234To function writes each // ..

Read more

A Flutter app based on the design of the Food Delivery APP, created by Mehedi Hasan. Greating Start Clone the repo Install the dependicies Run it Preview This is Full Functional App Version History Version Date Comment 1.0 August 2020 Initial release Contributing Feel welcome and free to submit issues, pull requests and features to ..

Read more

NPuzzle An NPuzzle built with Flutter. Using A star algorithm to solve the puzzle. Widgets Used. Stack. AnimatedPositioned. Output Download this app source code on GitHub https://github.com/JosteveGit/NPuzzle FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

StateNotifier Hook This package provides a useStateNotifier hook similar to useValueListenable. There is also useCreateStateNotifier hook which creates a StateNotifier and automatically dispose it. Usage // 1. Create your state notifier as usual. class CounterNotifier extends StateNotifier<int> { CounterNotifier() : super(0); void increment() => state++; void decrement() => state–; } // 2. Extend hook widget class ReadMeExample extends HookWidget { const ReadMeExample({Key? ..

Read more

BMI_Calculator_Flutter A fully responsive BMI calculator app made using flutter and dart with beautiful minimalistic user interface design and easy to use . It helps to easily calculate body mass index which will help individual to easily assess his health condition whether he/she is healthy , underweight or overweight based on the input entered by ..

Read more

You can change the information and link it to the databases and play the videos inside it Home Download source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Home Screen Popular Movies on IMDB  Popilar Movie detail and trailer Search Screen Searched Movie info Lab: Write your first Flutter app Cookbook: Useful Flutter samples Api Source –https://rapidapi.com For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference. Download source code on GitHub ..

Read more

Flutter Ecommerce App UI | Speed Code In this video we will create two screens for ecommerce app using #flutter. In Home screen there will be items grid and category selector. In Details screen we display selected item details. We using #Hero widget to implement #animation. Preview Download Ecommerce App UI source code on GitHub ..

Read more

Flutter Wallet Application Example – Day 40 class Afgprogrammer extends Flutter100DaysOfCode { video() { return { “title”: “Flutter Wallet Application Example”, “description”: “Let’s make a wallet application.”, “day”: 40, } } } Assets icon8 Previous Designs Checkout my Youtube channel Development Setup Clone the repository and run the following commands: Screenshots Home Page Contact Page ..

Read more

T2Ti Pegasus POS This repository holds the code for the T2Ti Pegasus POS system. In the Lite version it is possible to issue Receipt (developed for MEI) and in the fiscal version it is possible to issue fiscal documents: NFC-e, SAT and MFE (SAT and MFE under development). T2Ti Pegasus POS Course To understand how to ..

Read more

Fluthereum Description Flutter example project to run Solidity smart contracts using web3Dart library Dependencies web3dart: A dart library that connects to interact with the Ethereum blockchain. It connects to an Ethereum node to send transactions, interact with smart contracts and much more! Features Connect to an Ethereum node with the rpc-api, call common methods Send ..

Read more