vyuh_feature_developer 2.0.1
vyuh_feature_developer: ^2.0.1 copied to clipboard
A Developer-focused feature that shows all the included features in a Vyuh-enabled App
import 'package:material_ui/material_ui.dart';
import 'package:vyuh_core/vyuh_core.dart' as vc;
import 'package:vyuh_feature_developer/vyuh_feature_developer.dart'
as developer;
void main() async {
vc.runApp(
features: () => [
// feature that shows all the included features in a Vyuh-enabled App
developer.feature,
],
platformWidgetBuilder: vc.PlatformWidgetBuilder.system.copyWith(
appBuilder: (_, platform) {
return MaterialApp.router(
title: 'Vyuh Demo',
debugShowCheckedModeBanner: false,
routerConfig: platform.router.instance,
);
},
),
);
}