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.
26 lines
1017 B
26 lines
1017 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_dialog.dart'; |
|
|
|
/// Package values |
|
final packageGetIt = PackageDialog( |
|
key: 'get_it', |
|
descEN: ''' |
|
This is a simple Service Locator for Dart and Flutter projects with some |
|
additional goodies highly inspired by Splat. |
|
''', |
|
descRU: ''' |
|
Это простой сервис-локатор для проектов Dart и Flutter с некоторыми |
|
дополнительные вкусности, вдохновленные Splat. |
|
''', |
|
messageEN: ''' |
|
This is a platform independent plugin used in this app, should work |
|
for you too. |
|
''', |
|
messageRU: ''' |
|
Это плагин независимый от платформы, используется в этом приложении, |
|
должен работать и у вас. |
|
''', |
|
version: '7.6.4', |
|
isPlatformDependent: false, |
|
);
|
|
|