EzApp constructor

EzApp({
  1. Key? key,
  2. required String title,
  3. Widget? homeScreenWidget,
  4. GoRouter? routerConfig,
})

PlatformProvider wrapper with EzConfig theming Either provide a homeScreenWidget for traditional navigation or a routerConfig to enable deep linking

Implementation

EzApp({
  this.key,
  required this.title,
  this.homeScreenWidget,
  this.routerConfig,
}) : assert(routerConfig != null || homeScreenWidget != null);