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
721 B
24 lines
721 B
/* |
|
* Copyright (c) 2023. Open Mobile Platform LLC. |
|
* License: Proprietary. |
|
*/ |
|
import 'package:flutter_example_packages/base/package/package_dialog.dart'; |
|
|
|
/// Package values |
|
final packageSqflite = PackageDialog( |
|
key: 'sqflite', |
|
descEN: ''' |
|
SQLite plugin for Flutter. Supports iOS, Android, MacOS and Aurora OS. |
|
''', |
|
descRU: ''' |
|
Плагин SQLite для Flutter. Поддерживает iOS, Android, MacOS и ОС Aurora. |
|
''', |
|
messageEN: ''' |
|
Platform dependent plugin. Preview of work in development. |
|
''', |
|
messageRU: ''' |
|
Платформо-зависимый плагин. Превью работы в разработке. |
|
''', |
|
version: '2.2.6', |
|
isPlatformDependent: true, |
|
);
|
|
|