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.
24 lines
753 B
24 lines
753 B
// SPDX-FileCopyrightText: Copyright 2023 Open Mobile Platform LLC <community@omp.ru> |
|
// SPDX-License-Identifier: BSD-3-Clause |
|
import 'package:flutter_example_packages/base/package/package_page.dart'; |
|
import 'package:get_it/get_it.dart'; |
|
|
|
import 'model.dart'; |
|
import 'page.dart'; |
|
|
|
/// Package values |
|
final packageSqflite = PackagePage( |
|
key: 'sqflite', |
|
descEN: ''' |
|
SQLite plugin for Flutter. Supports iOS, Android, MacOS and Aurora OS. |
|
''', |
|
descRU: ''' |
|
Плагин SQLite для Flutter. Поддерживает iOS, Android, MacOS и ОС Аврора. |
|
''', |
|
version: '2.3.0', |
|
isPlatformDependent: true, |
|
page: () => SqflitePage(), |
|
init: () { |
|
GetIt.instance.registerFactory<SqfliteModel>(() => SqfliteModel()); |
|
}, |
|
);
|
|
|