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
795 B
26 lines
795 B
/* |
|
* Copyright (c) 2023. Open Mobile Platform LLC. |
|
* License: Proprietary. |
|
*/ |
|
import 'package:flutter_example_packages/base/package/package_dialog.dart'; |
|
|
|
/// Package values |
|
final packageGoogleFonts = PackageDialog( |
|
key: 'google_fonts', |
|
descEN: ''' |
|
A Flutter package to use fonts from fonts.google.com. |
|
''', |
|
descRU: ''' |
|
Пакет Flutter для использования шрифтов с fonts.google.com. |
|
''', |
|
messageEN: ''' |
|
This is a platform dependent plugin used in this app, should work |
|
for you too. |
|
''', |
|
messageRU: ''' |
|
Это плагин зависимый от платформы, используется в этом приложении, |
|
должен работать и у вас. |
|
''', |
|
version: '4.0.4', |
|
isPlatformDependent: true, |
|
);
|
|
|