mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

### fixes #136139 <br> <details open> <summary><b>getting sentimental in the PR description</b> (click to collapse)<br><br></summary> The past 7 months have been quite the journeyâI made some huge blunders and some huge accomplishmentsâa very fun time overall. I really appreciate the people who took the time to perform code review for my refactoring shenanigans: **christopherfujino**, **andrewkolos**, **LongCatIsLooong**, **gspencergoog**, **loic-sharma**, **Piinks**, **bernaferrari**, **bartekpacia**, **bleroux**, **kevmoo**, **rakudrama**, **XilaiZhang**, **QuncCccccc**, **MominRaza**, and **victorsanni**. And a huge shoutout to 2 individuals: - @justinmc, for offering to sponsor me for commit access (words could not describe my excitement) - @goderbauer, for being super duper proactive and consistent with code review <br> </details> This pull request makes 13 "switch statements â switch expressions" PRs in total, reducing the LOC in this repo by **1,974**! From now on, I'll make sure to request a test exemption for each refactoring PR ð
102 lines
3.1 KiB
Dart
102 lines
3.1 KiB
Dart
// 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.
|
|
|
|
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 {
|
|
return ThemeData(
|
|
useMaterial3: false,
|
|
brightness: switch (_configuration.stockMode) {
|
|
StockMode.optimistic => Brightness.light,
|
|
StockMode.pessimistic => 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());
|
|
}
|