Go to file
Simon Binder 633b2ec359
Remove unused file, link to encryption sample
2022-08-25 21:20:31 +02:00
.github Test docs in regular action 2022-08-15 21:16:38 +02:00
docs Remove unused file, link to encryption sample 2022-08-25 21:20:31 +02:00
drift Typealiases and easier defaults for scoped components 2022-08-20 00:22:28 +02:00
drift_dev added rtree support 2022-08-23 16:33:23 +03:00
drift_sqflite Fix lint in drift_sqflite test 2022-08-13 22:12:18 +02:00
examples Remove unused file, link to encryption sample 2022-08-25 21:20:31 +02:00
extras Encrypted drift: Add path to main dependencies 2022-08-25 21:17:07 +02:00
sqlparser test argument validation 2022-08-24 17:35:51 +03:00
tool Add encryption example 2022-08-25 21:17:08 +02:00
.dockerignore Add docker test 2022-08-08 10:26:51 +02:00
.gitattributes Support includes on the @UseDao annotation as well 2019-07-29 15:19:58 +02:00
.gitignore 🚚 Move gitignore to root 2022-07-20 09:14:14 +08:00
CONTRIBUTING.md Fix docs build, retire master branch 2022-02-09 16:08:08 +01:00
Dockerfile Add docker test 2022-08-08 10:26:51 +02:00
LICENSE Add MIT license 2019-02-09 21:00:00 +01:00
README.md Update Stream marketing URL 2022-07-16 11:53:18 +02:00
netlify.toml Collect documentation for 2.0 release 2022-08-13 14:18:17 +02:00

README.md

Drift

Note: Moor has been renamed to drift

Build Status Chat on Gitter

Proudly Sponsored by Stream 💙


Try the Flutter Chat Tutorial  💬

Core Generator
Main version Generator version

Drift is a reactive persistence library for Flutter and Dart, built on top of sqlite. Drift is

  • Flexible: Drift lets you write queries in both SQL and Dart, providing fluent apis for both languages. You can filter and order results or use joins to run queries on multiple tables. You can even use complex sql features like WITH and WINDOW clauses.
  • 🔥 Feature rich: Drift has builtin support for transactions, schema migrations, complex filters and expressions, batched updates and joins. We even have a builtin IDE for SQL!
  • 📦 Modular: Thanks to builtin support for daos and imports in sql files, drift helps you keep your database code simple.
  • 🛡️ Safe: Drift generates typesafe code based on your tables and queries. If you make a mistake in your queries, drift will find it at compile time and provide helpful and descriptive lints.
  • Fast: Even though drift lets you write powerful queries, it can keep up with the performance of key-value stores like shared preferences and Hive. Drift is the only major persistence library with builtin threading support, allowing you to run database code across isolates with zero additional effort.
  • Reactive: Turn any sql query into an auto-updating stream! This includes complex queries across many tables
  • ⚙️ Cross-Platform support: Drift works on Android, iOS, macOS, Windows, Linux and the web. This template is a Flutter todo app that works on all platforms.
  • 🗡️ Battle tested and production ready: Drift is stable and well tested with a wide range of unit and integration tests. It powers production Flutter apps.

With drift, persistence on Flutter is fun!

To start using drift, read our detailed docs.

If you have any questions, feedback or ideas, feel free to create an issue. If you enjoy this project, I'd appreciate your 🌟 on GitHub.


Important packages in this repo:

  • drift: The main runtime for drift, which provides most apis
  • drift_dev: The compiler for drift tables, databases and daos. It also contains a fully-featured sql ide for the Dart analyzer.
  • sqlparser: A sql parser and static analyzer, written in pure Dart. This package can be used without drift to perform analysis on sql statements. It's on pub at sqlparser