vyuh_feature_developer 1.13.2
vyuh_feature_developer: ^1.13.2 copied to clipboard
A Developer-focused feature that shows all the included features in a Vyuh-enabled App
import 'package:flutter/material.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,
);
}),
);
}
copied to clipboard