Category : Flutter App

Now for some internet optimism. at_widgets This is a common repository for various flutter packages that are published on pub.dev These packages help to achieve the common functionalities associated with atsigns like authentication, chat, etc. Widgets contained (which can also be found on pub.dev as linked): at_backupkey_flutter– A flutter plugin project for saving the backup key ..

Read more

geocoder Forward and reverse geocoding. Usage Import package:geocoder/geocoder.dart, and use the Geocoder.local to access geocoding services provided by the device system. Example: import ‘package:geocoder/geocoder.dart’; // From a query final query = “1600 Amphiteatre Parkway, Mountain View”; var addresses = await Geocoder.local.findAddressesFromQuery(query); var first = addresses.first; print(“${first.featureName} : ${first.coordinates}”); // From coordinates final coordinates = new Coordinates(1.10, 45.50); addresses ..

Read more

Flutter geocoding plugin The Flutter geocoding plugin is build following the federated plugin architecture. A detailed explanation of the federated plugin concept can be found in the Flutter documentation. This means the geocoding plugin is separated into the following packages: geocoding: the app facing package. This is the package users depend on to use the plugin ..

Read more

Phone Number for Flutter PhoneNumber is a Flutter plugin that allows you to parse, validate and format international phone numbers. The plugin uses the native libraries libphonenumber for Android and PhoneNumberKit pod for iOS. Library Version libphonenumber 8.12.32 PhoneNumberKit 3.3.3 Usage Parsing Parse a phone number with region prefix. String springFieldUSASimple = ‘+14175555470’; PhoneNumber phoneNumber = await PhoneNumberUtil().parse(springFieldUSASimple); Parse ..

Read more

Cambodia Geography Getting Started In this project, we use flutter 2.2.3. If you have different version, you should consider install FVM. Prerequisites Built with Flutter 2.2.3 – The framework used Dart – The language used Data use Cambodia Geography API – By our backend team. https://geo.nestcode.co – A website that inspired us to do this project. Code generation Model generations ..

Read more

session Network request result json to dart https://javiercbk.github.io/json_to_dart/ Getting Started Add dependency dependencies: session: ^1.0.3+2 #latest version Example import ‘dart:io’; import ‘package:dio/dio.dart’; import ‘package:flutter/material.dart’; import ‘package:session/session.dart’; export ‘package:session/session.dart’ show Result; Config configAPI(String baseURL) { return Config( baseUrl: baseURL ?? “https://www.httpbin.org/”, // proxy: ‘PROXY localhost:8888’, connectTimeout: 10, receiveTimeout: 10, ); } SessionInterceptorSendHandler _onRequest = (options) async { ..

Read more

Flutter Light & Dark Theme. A simple application made with Provider and Shared Preferences, where you can change the theme and gets applied throughout the app and also persisting the Theme, so that the application remembers your choice while opening next time. Flutter Light & Dark Theme Source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub ..

Read more

XML Layout for Flutter. Brings Angular’s style to Flutter! Imagine that you can do this : <Container width=”50 | widthPercent” height=”50 | heightPercent” color=”blue” :text=”‘Hello world!'” :opacity=”.9″ :center :if=”ctrl.textVisible | behavior” /> Instead of this: final size = MediaQuery.of(context).size; final __widget = StreamBuilder( initialData: ctrl.textVisible.value, stream: ctrl.textVisible, builder: (BuildContext context, snapshot) { if (snapshot.data) { ..

Read more

stacked_notification_cards A Flutter implementation of iOS style stacked notifications. Features Given notifications can be stacked one upon the other (iOS style) Notifications can be expanded with fan animation. Individual notification card can slide either left or right Individual cards or the entire stack of cards can be dismissed via slide action. It’s possible to use ..

Read more

Dart CLI Packager Short Intro: A set of Grinder tasks that make it easy to release a Dart command-line application. This package provides a set of Grinder tasks that make it easy to release a Dart command-line application on many different release channels, to Dart users and non-Dart users alike. It also integrates with Travis CI to ..

Read more

Usage FlamePluginComponent A simple usage example: import ‘package:composition_rendering/scene.dart’; import ‘package:flame/flame.dart’; import ‘package:flame/game.dart’; import ‘package:flame_composition_rendering/flame_plugin.dart’; import ‘package:flutter/widgets.dart’; void main() { WidgetsFlutterBinding.ensureInitialized(); runApp( GameWidget( game: ExampleLauncher(), ), ); } class ExampleLauncher extends BaseGame { final FlamePluginComponent plugin = FlamePluginComponent(); ExampleLauncher() { plugin.scene = GameScene(); } @override Future<void> onLoad() async { await Flame.images.loadAll([ ‘bg.jpg’, ]); await add(plugin); } ..

Read more

Composition Rendering A graphics engine for creating 2D games. Composition Rendering is not a game engine. This solution can be used as part of a third-party game engine. The functions of creating game scenes and managing graphic objects in the action scene are at your disposal. Object rendering is optimized to minimize the number of ..

Read more

Finamp Finamp is a Jellyfin music player for Android and iOS. Its main feature is the ability to download songs for offline listening. Downloading Note: The F-Droid release may take a day or two to get updates because since F-Droid only builds once a day. The app is also available as an APK from the releases page. ..

Read more

Flutter Notes Short Intro: A Flutter app that allows to create notes and sync them across different devices with the same account. Getting Started First of all, you will need to have to setup the flutter environment to build and run this project. You can follow the official Install guide to set up all properly. Installing Clone ..

Read more

JsonToDart A Dotnet App to create dart class from json, taking null-safety into consideration The dart class extends Serializable base class Here is the Serializable class code import ‘dart:convert’; abstract class Serializable { String serialize() { return json.encode(this.toMap()); } void deserialize(String text) { this.fromMap(json.decode(text)); } //abstract Map<String, dynamic> toMap(); //abstract void fromMap(Map<String, dynamic> map); } Contribute on GitHub FlutterappworldProvides ..

Read more

Piwigo Next Generation (for Android) An android application for managing and uploading images to Piwigo servers. This app is under development by the Piwigo android team. The goal is to close the gap with the IOS Piwigo application while keeping in mind the priority of the features like the upload, and the ability to select multiple images at a time ..

Read more

Splash Screen Developement Stack 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

Flutter Todo App with GetX Building a List to do App with Flutter Screenshots Homescreen Add Todo Edit Todo Why flutter? Installation To run this project on your own, do the following: Clone this project. Run flutter pub get. Run the project using flutter run or using your IDE’s tools. For help getting started with Flutter, view the online ..

Read more

Tip Calculator App A Tip Calculator app made in Flutter. Prerequisites These things are required before setting up the project. Git Flutter Read Guide Tech Stack Flutter Download Tip Calculator App source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

From JSON to Dart Advanced Table of Contents Features Convert from clipboard Convert from selection Convert from clipboard to code generation Convert from selection to code generation Convert from file Annotations Speed up converting Enhanced file names Context actions The Syntax toString method copyWith method Equality Operator Equatable Null safety Supported Generators Freezed JSON Serializable ..

Read more

flutter toast Toast Library for Flutter Now this toast library supports two kinds of toast messages one which requires BuildContext other with No BuildContext Toast with no context Supported Platforms Android IOS Web (Uses Toastify-JS) This one has limited features and no control over UI Toast Which requires BuildContext Supported Platforms ALL Full Control of the Toast Toasts will ..

Read more

A MangaDex API wrapper for Dart Usage A simple usage example: import ‘package:mangadex_api/mangadex_api.dart’; main() { var client = MDClient(); client.getChapter(‘5e8bc984-5f3f-4fb1-b6ee-cf7f3812b112’).then((chapter) { print(chapter!.title); }); client.getMangaInfo(‘a96676e5-8ae2-425e-b549-7f15dd34a6d8’, appendChapters: true, translatedLang: [‘cs’]).then((m) { print(m!.title[‘en’]); }); } Currently if you login, only requests where authentication is required will be done with your token, unless you set the useLogin parameter in a function as true. Captcha If ..

Read more

Short Intro: Flutter 2.0 (Null safety) Basic, Dynamic & Silver style Staggered Grid views made using flutter staggered grid view package. 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 ..

Read more

Luna Relaxing Music App Download Relaxing Music App source code on GitHub https://github.com/iamAbhishekkumar/Luna FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..

Read more

Movies App  Hi, do you like movies?  Try MoviesApp here. There are currently 4 themes in the app. Search for your favourite movie and add it to your favourites. Operating Principle How to run This application is using api of themoviedb, so before using it you have to create an api from themoviedb and generate an API and apply it ..

Read more

WasswordWonderful Password Generator With Wassword you can easily generate complex passwords and use them for your online accounts. Choose length and chars to be used and generate your passwords safely. Everything works offline and nothing is shared, your safety comes first. Wassword isn’t a password manager, it doesn’t store generated password. Wassword only creates password! ..

Read more

realtime-dart Listens to changes in a PostgreSQL Database and via websockets. A dart client for Supabase Realtime server. Usage Creating a Socket connection You can set up one connection to be used across the whole app. import ‘package:realtime_client/realtime_client.dart’; var client = RealtimeClient(REALTIME_URL); client.connect(); Socket Hooks client.onOpen(() => print(‘Socket opened.’)); client.onClose((event) => print(‘Socket closed $event’)); client.onError((error) => print(‘Socket ..

Read more

An attempt to implement better scrolling for Flutter Web and Desktop. Includes keyboard, MButton and custom mouse wheel scrolling. Getting started Example Usage and features Example Usage and features (from the example app) final controller = ScrollController(); … ImprovedScrolling( scrollController: controller, onScroll: (scrollOffset) => debugPrint( ‘Scroll offset: $scrollOffset’, ), onMMBScrollStateChanged: (scrolling) => debugPrint( ‘Is scrolling: $scrolling’, ..

Read more

Embedded Linux (eLinux) embedding for Flutter This project was created to develop non-official embedded Linux embeddings of Flutter. This embedder is focusing on embedded Linux system use cases. It is also implemented based on Flutter desktop for Windows and has some unique features to use it in embedded systems. flutter-elinux Note that this project is the source code ..

Read more

Installing To get started simply add papercups_flutter: and the latest version to your pubspec.yaml. Then run flutter pub get  Done, It’s that simple. Using the widget Integration with your app requires just a few lines of code, add the following widget wherever you want your papercups chat window to be: import ‘package:papercups_flutter/papercups_flutter.dart’; PaperCupsWidget( props: Props( accountId: “xxxxxxxx-xxxxxxx-xxxx-xxxxxx”, //Your ..

Read more

Flutter Bloc Card Flip  Project on hold ~ August 9th 2021  An exploration of game card dealing and flipping actions using Flutter BloC state management. Web Application https://alienspaces.github.io/flutter-bloc-card-flip/ CI/CD All merges to the master branch run through automated tests followed by an automated web build and push to the publish branch which contains the current source for the above ..

Read more

Dart/Flutter package analyzer This action uses the pana (Package ANAlysis) package to compute the score that your Dart or Flutter package will have on the Pub site. This package, amongst other things: validates the code by performing static analysis with dartanalyzer, checks code formatting with dartfmt or flutter format (detected automatically), checks for outdated dependencies, validates the pubspec.yaml file (dependencies, description’s length…), checks for required ..

Read more