blob: 8128be0dc6a4a6acdf9b3ffd0472421043593a18 [file] [log] [blame]
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
library stocks;
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart' show
debugPaintBaselinesEnabled,
debugPaintLayerBordersEnabled,
debugPaintPointersEnabled,
debugPaintSizeEnabled,
debugRepaintRainbowEnabled;
import 'i18n/stock_strings.dart';
import 'stock_data.dart';
import 'stock_home.dart';
import 'stock_settings.dart';
import 'stock_symbol_viewer.dart';
import 'stock_types.dart';
class StocksApp extends StatefulWidget {
const StocksApp({super.key});
@override
StocksAppState createState() => StocksAppState();
}
class StocksAppState extends State<StocksApp> {
late StockData stocks = StockData();
StockConfiguration _configuration = StockConfiguration(
stockMode: StockMode.optimistic,
backupMode: BackupMode.enabled,
debugShowGrid: false,
debugShowSizes: false,
debugShowBaselines: false,
debugShowLayers: false,
debugShowPointers: false,
debugShowRainbow: false,
showPerformanceOverlay: false,
showSemanticsDebugger: false,
);
void configurationUpdater(StockConfiguration value) {
setState(() {
_configuration = value;
});
}
ThemeData get theme {
switch (_configuration.stockMode) {
case StockMode.optimistic:
return ThemeData(
brightness: Brightness.light,
primarySwatch: Colors.purple,
);
case StockMode.pessimistic:
return ThemeData(
brightness: Brightness.dark,
primarySwatch: Colors.purple,
);
}
}
Route<dynamic>? _getRoute(RouteSettings settings) {
if (settings.name == '/stock') {
final String? symbol = settings.arguments as String?;
return MaterialPageRoute<void>(
settings: settings,
builder: (BuildContext context) => StockSymbolPage(symbol: symbol!, stocks: stocks),
);
}
// The other paths we support are in the routes table.
return null;
}
@override
Widget build(BuildContext context) {
assert(() {
debugPaintSizeEnabled = _configuration.debugShowSizes;
debugPaintBaselinesEnabled = _configuration.debugShowBaselines;
debugPaintLayerBordersEnabled = _configuration.debugShowLayers;
debugPaintPointersEnabled = _configuration.debugShowPointers;
debugRepaintRainbowEnabled = _configuration.debugShowRainbow;
return true;
}());
return MaterialApp(
title: 'Stocks',
theme: theme,
localizationsDelegates: StockStrings.localizationsDelegates,
supportedLocales: StockStrings.supportedLocales,
debugShowMaterialGrid: _configuration.debugShowGrid,
showPerformanceOverlay: _configuration.showPerformanceOverlay,
showSemanticsDebugger: _configuration.showSemanticsDebugger,
routes: <String, WidgetBuilder>{
'/': (BuildContext context) => StockHome(stocks, _configuration, configurationUpdater),
'/settings': (BuildContext context) => StockSettings(_configuration, configurationUpdater),
},
onGenerateRoute: _getRoute,
);
}
}
void main() {
runApp(const StocksApp());
}