INNER CODE UNIT · Dart

Flow

flow-mn/flow · lib/main.dart:176

class Flow extends StatefulWidget {
  const Flow({super.key});

  @override
  State<Flow> createState() => FlowState();

  static FlowState of(BuildContext context) =>
      context.findAncestorStateOfType<FlowState>()!;
}

class FlowState extends State<Flow> {
  late final AppLifecycleListener _appLifeCycleListener;

  Locale _locale = FlowLocalizations.supportedLocales.first;
  ThemeMode _themeMode = ThemeMode.system;

  ThemeFactory _themeFactory = ThemeFactory.fromThemeName(null);

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…