using System.Collections.Generic; using Unity.UIWidgets.animation; using Unity.UIWidgets.foundation; using Unity.UIWidgets.ui; using Unity.UIWidgets.widgets; using TextStyle = Unity.UIWidgets.painting.TextStyle; namespace Unity.UIWidgets.material { static class AppUtils { public static readonly TextStyle _errorTextStyle = new TextStyle( color: new Color(0xD0FF0000), fontFamily: "monospace", fontSize: 48.0f, fontWeight: FontWeight.w700, decoration: TextDecoration.underline, decorationColor: new Color(0xFFFFFF00), decorationStyle: TextDecorationStyle.doubleLine ); } public class MaterialApp : StatefulWidget { public MaterialApp( Key key = null, GlobalKey navigatorKey = null, Widget home = null, Dictionary routes = null, string initialRoute = null, RouteFactory onGenerateRoute = null, RouteFactory onUnknownRoute = null, List navigatorObservers = null, TransitionBuilder builder = null, string title = "", Color color = null, ThemeData theme = null, Locale locale = null, List> localizationsDelegates = null, LocaleListResolutionCallback localeListResolutionCallback = null, LocaleResolutionCallback localeResolutionCallback = null, List supportedLocales = null, bool showPerformanceOverlay = false ) : base(key: key) { supportedLocales = supportedLocales ?? new List {new Locale("en", "US")}; this.navigatorKey = navigatorKey; this.home = home; this.routes = routes ?? new Dictionary(); this.initialRoute = initialRoute; this.onGenerateRoute = onGenerateRoute; this.onUnknownRoute = onUnknownRoute; this.navigatorObservers = navigatorObservers ?? new List(); this.builder = builder; this.title = title; this.color = color; this.theme = theme; this.locale = locale; this.localizationsDelegates = localizationsDelegates; this.localeListResolutionCallback = localeListResolutionCallback; this.localeResolutionCallback = localeResolutionCallback; this.supportedLocales = supportedLocales; this.showPerformanceOverlay = showPerformanceOverlay; } public readonly GlobalKey navigatorKey; public readonly Widget home; public readonly Dictionary routes; public readonly string initialRoute; public readonly RouteFactory onGenerateRoute; public readonly RouteFactory onUnknownRoute; public readonly List navigatorObservers; public readonly TransitionBuilder builder; public readonly string title; public readonly ThemeData theme; public readonly Color color; public readonly Locale locale; public readonly List> localizationsDelegates; public readonly LocaleListResolutionCallback localeListResolutionCallback; public readonly LocaleResolutionCallback localeResolutionCallback; public readonly List supportedLocales; public readonly bool showPerformanceOverlay; public override State createState() { return new _MaterialAppState(); } } class _MaterialAppState : State { public override void initState() { base.initState(); this._updateNavigator(); } public override void didUpdateWidget(StatefulWidget oldWidget) { base.didUpdateWidget(oldWidget); this._updateNavigator(); } List _navigatorObservers; void _updateNavigator() { if (this.widget.home != null || this.widget.routes.isNotEmpty() || this.widget.onGenerateRoute != null || this.widget.onUnknownRoute != null) { this._navigatorObservers = new List(this.widget.navigatorObservers); } else { this._navigatorObservers = null; } } RectTween _createRectTween(Rect begin, Rect end) { return new MaterialRectArcTween(begin: begin, end: end); } List _localizationsDelegates { get { List> _delegates = new List>(); if (this.widget.localizationsDelegates != null) { _delegates.AddRange(this.widget.localizationsDelegates); } _delegates.Add(DefaultMaterialLocalizations.del); return new List(_delegates); } } public override Widget build(BuildContext context) { ThemeData theme = this.widget.theme ?? ThemeData.fallback(); Widget result = new AnimatedTheme( data: theme, isMaterialAppTheme: true, child: new WidgetsApp( key: new GlobalObjectKey(this), navigatorKey: this.widget.navigatorKey, navigatorObservers: this._navigatorObservers, pageRouteBuilder: (RouteSettings settings, WidgetBuilder builder) => new MaterialPageRoute(settings: settings, builder: builder), home: this.widget.home, routes: this.widget.routes, initialRoute: this.widget.initialRoute, onGenerateRoute: this.widget.onGenerateRoute, onUnknownRoute: this.widget.onUnknownRoute, builder: this.widget.builder, textStyle: AppUtils._errorTextStyle, locale: this.widget.locale, localizationsDelegates: this._localizationsDelegates, localeResolutionCallback: this.widget.localeResolutionCallback, localeListResolutionCallback: this.widget.localeListResolutionCallback, supportedLocales: this.widget.supportedLocales, showPerformanceOverlay: this.widget.showPerformanceOverlay ) ); return result; } } }