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
731 B
24 lines
731 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 packageRxdart = PackagePage( |
|
key: 'rxdart', |
|
descEN: ''' |
|
RxDart extends the capabilities of Dart Streams and StreamControllers. |
|
''', |
|
descRU: ''' |
|
RxDart расширяет возможности Dart Streams и StreamControllers. |
|
''', |
|
version: '0.27.7', |
|
isPlatformDependent: false, |
|
page: () => RxdartPage(), |
|
init: () { |
|
GetIt.instance.registerFactory<RxdartModel>(() => RxdartModel()); |
|
}, |
|
);
|
|
|