|
|
|
@ -7,8 +7,10 @@ import 'package:flutter_example_packages/base/di/app_di.dart';
|
|
|
|
|
import 'package:flutter_example_packages/base/package/package.dart'; |
|
|
|
|
import 'package:flutter_example_packages/widgets/base/export.dart'; |
|
|
|
|
import 'package:flutter_example_packages/widgets/blocks/block_info_package.dart'; |
|
|
|
|
import 'package:flutter_example_packages/widgets/blocks/block_item.dart'; |
|
|
|
|
import 'package:flutter_example_packages/widgets/layouts/block_layout.dart'; |
|
|
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.dart'; |
|
|
|
|
import 'package:provider/provider.dart'; |
|
|
|
|
|
|
|
|
|
import 'model.dart'; |
|
|
|
|
import 'package.dart'; |
|
|
|
@ -31,22 +33,31 @@ class _ProviderPageState extends AppState<ProviderPage> {
|
|
|
|
|
MediaQueryData media, |
|
|
|
|
AppLocalizations l10n, |
|
|
|
|
) { |
|
|
|
|
return BlockLayout<ProviderModel>( |
|
|
|
|
model: getIt<ProviderModel>(), |
|
|
|
|
title: widget.package.key, |
|
|
|
|
builder: (context, child, model) { |
|
|
|
|
return SingleChildScrollView( |
|
|
|
|
child: Padding( |
|
|
|
|
padding: const EdgeInsets.all(20), |
|
|
|
|
child: Column( |
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start, |
|
|
|
|
children: [ |
|
|
|
|
BlockInfoPackage(widget.package), |
|
|
|
|
], |
|
|
|
|
return FutureProvider<int>( |
|
|
|
|
initialData: 0, |
|
|
|
|
create: (context) => Future.value(12345), // Set value |
|
|
|
|
child: BlockLayout<ProviderModel>( |
|
|
|
|
model: getIt<ProviderModel>(), |
|
|
|
|
title: widget.package.key, |
|
|
|
|
builder: (context, child, model) { |
|
|
|
|
return SingleChildScrollView( |
|
|
|
|
child: Padding( |
|
|
|
|
padding: const EdgeInsets.all(20), |
|
|
|
|
child: Column( |
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start, |
|
|
|
|
children: [ |
|
|
|
|
BlockInfoPackage(widget.package), |
|
|
|
|
BlockItem( |
|
|
|
|
title: l10n.providerTitle, |
|
|
|
|
desc: l10n.providerSubtitle, |
|
|
|
|
value: context.watch<int>(), // Get value |
|
|
|
|
), |
|
|
|
|
], |
|
|
|
|
), |
|
|
|
|
), |
|
|
|
|
), |
|
|
|
|
); |
|
|
|
|
}, |
|
|
|
|
); |
|
|
|
|
}, |
|
|
|
|
), |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|