Author : Flutterappworld

Tubles Tubles is a simple applications to provide any tubles place in google maps and we as the user can navigate into the selected tubles location. Features Display Tubles Location Custom Beauty Marker Navigation Mode & Normal Mode Direction Route to Tubles Distance Calculations Location Subscribtion Listener Custom Map Style Terrain Installing git clone https://github.com/yusriltakeuchi/Tubles.git flutter ..

Read more

Konachan – Sama An app written in flutter to utilize the Konachan API . It’s purely for the purpose to practice the concepts of flutter and follow the best conventions possible. It also serves as a sandbox for me to try out various good practices. WARNING: Download Konachan app source code on GitHub https://github.com/meta-boy/Konachan-Sama FlutterappworldProvides the list ..

Read more

Atheneum A free, open-source and ad-free app for reading your favourite manga! Screenshots Download Atheneum source code on GitHub https://github.com/meta-boy/atheneum FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

moeClient A simple client ( unofficial ) for http://listen.moe/ written in dart Screenshots Installation Flutter online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference. Download moeClient App source code on GitHub https://github.com/meta-boy/MoeSen FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

flutter_desktop_media_player A new Flutter project. 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 ..

Read more

Avengers App This application is developed using Flutter SDK and uses Dart Programming Language. Home Page: Avenger Details (Example 1) Avenger Details (Example 2) This Application fetches data from a JSON API developed by me, feel free to use this JSON API in your projects, it’ll be good if you give me some credits for ..

Read more

Info: A web-safe implementation of dart.io.Platforms. Helps avoid the “Unsupported operation: Platform._operatingSystem” runtime error. Universal Platform – A Web-safe Platform class Currently, if you include the dart.io.Platform anywhere in your code, your app will throw the following error on Web: With this plugin you can perform platform detection on all platforms, including Web, without errors.  Installation dependencies: ..

Read more

Flokk A fresh and modern Google Contacts manager that integrates with GitHub and Twitter. Demo Builds Web: https://flokk.app Linux: https://snapcraft.io/flokk-contacts macOS: https://flokk.app/macos/Flokk_Contacts_v1.0.1.dmg Windows: https://flokk.app/windows/Flokk_Contacts_v1.0.1.zip Getting Set Up 1. Flutter Follow the install instructions here: https://flutter.dev/docs/get-started/install Desktop-specific info: https://flutter.dev/desktop, https://github.com/flutter/flutter/wiki/Desktop-shells Flokk was built on the bleeding edge of Flutter, so make sure to use the master branch in their git repo and checkout commit 9c3f0faa6d. We’re ..

Read more

scaffold_responsive A responsive scaffold widget that adjusts to your device size, for your flutter mobile and web apps. Usage class MyHomePage extends StatefulWidget { @override _MyHomePageState createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { String tab; void setTab(String newTab) { setState(() { tab = newTab; }); } @override Widget build(BuildContext context) { return ResponsiveScaffold( ..

Read more

flutter_sidebar An easy to configure sidebar widget for your flutter mobile/web apps Usage import ‘package:flutter_sidebar/flutter_sidebar.dart’; Simple Sidebar with few sidebar items: class MyHomePage extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar(title: Text(‘Flutter Sidebar’)), drawer: Sidebar.fromJson( tabs: [ { ‘title’: ‘Chapter A’, ‘children’: [ {‘title’: ‘Chapter A1’}, {‘title’: ‘Chapter A2’}, ], }, ..

Read more

epic_games_ui A new Flutter project. 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 ..

Read more

A library for building REST APIs easily with Dart modeled after Express JS for Node Js. The library is still a work in progress and open to contribution. Created with StageHand – license. Inspiration Our inspiration is the simplicity of express js . Installing Add the following to your pubspec.yaml file: dependencies: sevr: any Usage A simple usage example: import ..

Read more

batufo A 2D Multiplayer Game running with #Flutter and thus on macOS, Linux, Android, iOS and the browser. Links the homepage shows how you to install the game for various platforms the video series documents the making of batufo the devlog contains notes about research and milestones related to batufo the todo list shows and explains completed and not yet completed game items the level editor allows ..

Read more

Carousel Extended  A Flutter Carousel widget. Usage As simple as using any flutter Widget. Based on Carousel Pro but extended to be able to navigate between slides programmatically. Example: Add the module to your project pubspec.yaml: … dependencies: … carousel_extended: ^1.0.0+1 … And install it using flutter packages get on your project folder. After that, just import the module ..

Read more

inline_calender An inline calender package inspired by outlook app. It also supports Jalali/Shamsi calender. Uses theme and locale of context to localize and change color of widgets. Usage Add the module to your project pubspec.yaml then install it using “flutter packages get` … dependencies: … inline_calender: ^0.1.0 … Example: import ‘package:flutter/material.dart’; import ‘package:inline_calender/inline_calender.dart’; void main() => runApp(MyApp()); ..

Read more

Motivation Flutter comes with two classes for manipulating “overlays”: Overlay OverlayEntry But OverlayEntry is very awkward to use. As opposed to most of the framework, OverlayEntry is not a widget (which comes with a nice and clean declarative API). Instead, is uses an imperative API. This comes with a few drawbacks: a widget’s life-cycle (like initState) cannot add/remove synchronously an OverlayEntry.This means the first rendering ..

Read more

Welcome to Freezed, yet another code generator for unions/pattern-matching/copy. Motivation While there are many code-generators available to help you deal with immutable objects, they usually come with a trade-off.Either they have a simple syntax but lack features or they have very advanced features but with complex syntax. A typical example would be a “clone” method.Current generators ..

Read more

Widgets are cool. But classes are quite verbose: class Foo extends StatelessWidget { final int value; final int value2; const Foo({Key key, this.value, this.value2}) : super(key: key); @override Widget build(BuildContext context) { return Text(‘$value $value2’); } } So much code for something that could be done much better using a plain function: Widget foo(BuildContext context, ..

Read more

Black Lives Matter. Support the Equal Justice Initiative. Welcome to Riverpod! This project can be considered as an experimental provider rewrite. For learning how to use Riverpod, see its documentation: https://riverpod.dev Long story short: Declare your providers as global variables:final myNotifierProvider = ChangeNotifierProvider((_) { return MyNotifier(); }); class MyNotifier extends ChangeNotifier { int count; // TODO: typical ChangeNotifier logic } Use them ..

Read more

My Flutter Desktop Challenges Show some and star the repo to support the project Challenges: Download Flutter desktop app source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Awesome Flutter Snippets Awesome Flutter Snippets is a collection of commonly used Flutter classes and methods. It increases your speed of development by eliminating most of the boilerplate code associated with creating a widget. Widgets such as StreamBuilder and SingleChildScrollView can be created by typing the shortcut streamBldr and singleChildSV respectively.  Features Speeds up development Eliminates boilerplate Supports complex widgets (Eg: Custom Clipper ..

Read more

OU Notes [Osmania University (O.U)] For the Students , By the Students. An Application for Osmania University students to access educational material at one place built with the famous Stacked Architecture in Flutter. Download App Content  O.U Notes O.U Previous Question Papers O.U Syllabus O.U Resources Features  Access documents directly within app using inbuilt PDF viewer Ability to save documents in downloads Report documents ..

Read more

pdf_flutter Inspired by Pdf_Viewer_Plugin  Wrapped around AndroidPdfViewer on Android. ???????? 1. Add pdf_flutteron pubspec.yml 2. On iOS enable PDF preview like this: Add this on ios/Runner/info.plist: 3. Start Using Load PDF from network Load PDF files Load PDF from assets Demo Download Flutter PDF View Widget source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. ..

Read more

List of Flutter books: Beginning App Development with Flutter written by Rap Payne. Easy to understand the starter book. Currently the best-selling and highest-rated Flutter book on Amazon. Short Description: Create iOS and Android apps with Flutter using just one codebase. App development on multiple platforms has historically been difficult and complex. This book breaks ..

Read more

Provides source_gen Generators to create code for JSON serialization and deserialization. json_serializable Package: https://pub.dev/packages/json_serializable Source code The core package providing Generators for JSON-specific tasks. Import it into your pubspec dev_dependencies: section. json_annotation Package: https://pub.dev/packages/json_annotation Source code The annotation package which has no dependencies. Import it into your pubspec dependencies: section. checked_yaml Package: https://pub.dev/packages/checked_yaml Source code Generate more helpful exceptions when decoding YAML documents using package:json_serializable and package:yaml. ..

Read more

mobx.dart MobX for the Dart language. Supercharge the state-management in your Dart apps with Transparent Functional Reactive Programming (TFRP) Introduction Core Concepts Observables Computed Observables Actions Reactions Contributing Introduction MobX is a state-management library that makes it simple to connect the reactive data of your application with the UI. This wiring is completely automatic and feels ..

Read more

OpenTrivia A quiz app in flutter using the open trivia api Libraries used Font Awesome Flutter Flutter Custom Clippers Html Unescape Auto Size Text Screenshots Download Flutter quiz app source code on GitHub https://github.com/lohanidamodar/flutter_opentrivia FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Flutter E-Learning Online Courses App Application design is based on Learning Online Courses Mobile App #1 designed by Mikołaj Gałęziowski Screenshots Home Page Categories Page 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: ..

Read more

Music Player App This is a beautiful music player, developed using Flutter. Features Play any song included in Flutter Assets Background Play Beautiful Material Design Custom Flare Animations Demo Usage APK File : assets/app/apk-release.apk Dependencies Font Awesome Package for Custom Icons font_awesome_flutter: 8.8.1 Audio Manager Package for interacting with music audio_manager: ^0.5.3+2 Path Provider Package for handling interactions ..

Read more