Этот репозиторий содержит Flutter плагины для платформы ОС Аврора.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# sqflite_aurora
|
|
|
|
|
|
|
|
The Aurora OS implementation of [`sqflite`](https://pub.dev/packages/sqflite).
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
This package is not an endorsed implementation of `sqflite`.
|
|
|
|
Therefore, you have to include `sqflite_aurora` alongside `sqflite` as dependencies in your `pubspec.yaml` file.
|
|
|
|
|
|
|
|
**pubspec.yaml**
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
dependencies:
|
|
|
|
sqflite: ^2.3.0
|
|
|
|
sqflite_aurora:
|
|
|
|
git:
|
|
|
|
url: https://gitlab.com/omprussia/flutter/flutter-plugins.git
|
|
|
|
ref: master
|
|
|
|
path: packages/sqflite/sqflite_aurora
|
|
|
|
```
|
|
|
|
***.desktop**
|
|
|
|
|
|
|
|
```desktop
|
|
|
|
Permissions=UserDirs
|
|
|
|
```
|
|
|
|
|
|
|
|
***.spec**
|
|
|
|
|
|
|
|
```spec
|
|
|
|
BuildRequires: pkgconfig(sqlite3)
|
|
|
|
```
|
|
|
|
|
|
|
|
***.dart**
|
|
|
|
|
|
|
|
```dart
|
|
|
|
import 'package:sqflite/sqflite.dart';
|
|
|
|
```
|
|
|
|
|