Aim Facilitate communication between survivors and relief teams who speak different languages during the great earthquake in Turkey. Project scope The application aims to register translators and users in the database, to store their information in the database, and to enable earthquake victims or other users to communicate with translators. Project Steps: The translator and ..
Category : Database
Isar Database Quickstart • Documentation • Sample Apps • Support & Ideas • Pub.dev Isar [ee-zahr]: River in Bavaria, Germany. Crazy fast NoSQL database that is a joy to use. Features 💙 Made for Flutter. Easy to use, no config, no boilerplate 🚀 Highly scalable The sky is the limit (pun intended) 🍭 Feature rich. Composite & multi-entry indexes, query modifiers, JSON support etc. ⏱ Asynchronous. Parallel query operations ..
Surreal Flutter Demo A minimum Flutter client demo for SurrealDB. Prerequisites Flutter >= 3.3.2 SurrealDB >= surreal 1.0.0-beta.8 Getting Started Run the client flutter run -d chrome Then enter the SurrealDB websocket endpoint (eg. ws://localhost:8000/rpc). Disclaimer This is just a minimum, hardcoded, restricted and finished demo. Download source code on GitHub https://github.com/1l0/surreal_flutter_demo?ref=flutterappworld.com FlutterappworldProvides the list of ..
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 ..
Flutter Tutorial – Hive NoSQL Database Persist data with Flutter’s Hive NoSQL Database locally on Android, iOS & Web. Preview App Preview Course Preview Download Hive NoSQL Database for flutter source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
flutter_secure_storage A Flutter plugin to store data in secure storage: Keychain is used for iOS AES encryption is used for Android. AES secret key is encrypted with RSA and RSA key is stored in KeyStore With V5.0.0 we can use EncryptedSharedPreferences on Android by enabling it in the Android Options like so: AndroidOptions _getAndroidOptions() => const AndroidOptions( encryptedSharedPreferences: true, ..
GeoFlutterFire GeoFlutterFire is an open-source library that allows you to store and query a set of keys based on their geographic location. At its heart, GeoFlutterFire simply stores locations with string keys. Its main benefit, however, is the possibility of retrieving only those keys within a given geographic area – all in realtime. GeoFlutterFire uses ..
Flutter Tutorial – Database Storage Using Sqlite & Sqflite Persist data with Flutter’s Sqflite Database locally on your Android or iOS device by using Raw SQL statements. Preview App Preview Course Preview ➜ Buy My Courses Watch Video YouTube video where the source code is explained. Subscribe YouTube channel. ➜ Watch My Video Download source code on GitHub https://github.com/JohannesMilke/sqflite_database_example FlutterappworldProvides the ..
moor_db_viewer This package allows us to view our database in our development app without the need of exporting your database file. Filtering is done at database level Example Setup Add dependency to pubspec Use it Push a new route. The child will be the MoorDbViewer and pass your database to this screen. Moor Config Using named columns ..
database_manager (Developer Preview) Simple way to manage database. Version control and application’s database schema. Simplify CRUD operations. Installing Add this to your package’s pubspec.yaml file: dependencies: database_manager: “^0.0.4” Sqlite, Path and Path Provider dependencies must be installed. Available features Migration – version control and application’s database schema ORM – simplify CRUD operations Simple usage Migration import ‘package:database_manager/database_manager.dart’; class Table ..
dept_emp_data 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 ..
sensorz A Simple Flutter Android App, which displays Android Sensor Data. Introduction :: For implementation of UI, this app uses Flutter Framework. Code base is written mainly using Dart and Kotlin, these two languages. For accessing platform features, such as Sensors, Kotlin Language is used. UI level coding is done using Dart Language. For receiving continuous ..
Flutter Hive Database Example A new Flutter project to understand to Hive database implementation. Packages Used Hive Package Screenshots Download Flutter Hive Database source code on GitHub FlutterappworldProvides the list of the opensource Flutter apps collection with GitHub repository. flutterapp..
Fast, Enjoyable & Secure NoSQL Database Hive is a lightweight and blazing fast key-value database written in pure Dart. Inspired by Bitcask. Documentation & Samples ???? Features ???? Cross platform: mobile, desktop, browser ⚡ Great performance (see benchmark) ❤️ Simple, powerful, & intuitive API ???? Strong encryption built in ???? NO native dependencies ???? Batteries included Getting Started Check out the Quick Start documentation to get ..