
The main purpose of this PR is to make it so that when you set the initial route and it's a hierarchical route (e.g. `/a/b/c`), it implies multiple pushes, one for each step of the route (so in that case, `/`, `/a`, `/a/b`, and `/a/b/c`, in that order). If any of those routes don't exist, it falls back to '/'. As part of doing that, I: * Changed the default for MaterialApp.initialRoute to honor the actual initial route. * Added a MaterialApp.onUnknownRoute for handling bad routes. * Added a feature to flutter_driver that allows the host test script and the device test app to communicate. * Added a test to make sure `flutter drive --route` works. (Hopefully that will also prove `flutter run --route` works, though this isn't testing the `flutter` tool's side of that. My main concern is over whether the engine side works.) * Fixed `flutter drive` to output the right target file name. * Changed how the stocks app represents its data, so that we can show a page for a stock before we know if it exists. * Made it possible to show a stock page that doesn't exist. It shows a progress indicator if we're loading the data, or else shows a message saying it doesn't exist. * Changed the pathing structure of routes in stocks to work more sanely. * Made search in the stocks app actually work (before it only worked if we happened to accidentally trigger a rebuild). Added a test. * Replaced some custom code in the stocks app with a BackButton. * Added a "color" feature to BackButton to support the stocks use case. * Spaced out the ErrorWidget text a bit more. * Added `RouteSettings.copyWith`, which I ended up not using. * Improved the error messages around routing. While I was in some files I made a few formatting fixes, fixed some code health issues, and also removed `flaky: true` from some devicelab tests that have been stable for a while. Also added some documentation here and there.
138 lines
4.2 KiB
Dart
138 lines
4.2 KiB
Dart
// Copyright 2015 The Chromium 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 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/rendering.dart' show
|
|
debugPaintSizeEnabled,
|
|
debugPaintBaselinesEnabled,
|
|
debugPaintLayerBordersEnabled,
|
|
debugPaintPointersEnabled,
|
|
debugRepaintRainbowEnabled;
|
|
import 'package:intl/intl.dart';
|
|
|
|
import 'i18n/stock_messages_all.dart';
|
|
import 'stock_data.dart';
|
|
import 'stock_home.dart';
|
|
import 'stock_settings.dart';
|
|
import 'stock_strings.dart';
|
|
import 'stock_symbol_viewer.dart';
|
|
import 'stock_types.dart';
|
|
|
|
class StocksApp extends StatefulWidget {
|
|
@override
|
|
StocksAppState createState() => new StocksAppState();
|
|
}
|
|
|
|
class StocksAppState extends State<StocksApp> {
|
|
StockData stocks;
|
|
|
|
StockConfiguration _configuration = new StockConfiguration(
|
|
stockMode: StockMode.optimistic,
|
|
backupMode: BackupMode.enabled,
|
|
debugShowGrid: false,
|
|
debugShowSizes: false,
|
|
debugShowBaselines: false,
|
|
debugShowLayers: false,
|
|
debugShowPointers: false,
|
|
debugShowRainbow: false,
|
|
showPerformanceOverlay: false,
|
|
showSemanticsDebugger: false
|
|
);
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
stocks = new StockData();
|
|
}
|
|
|
|
void configurationUpdater(StockConfiguration value) {
|
|
setState(() {
|
|
_configuration = value;
|
|
});
|
|
}
|
|
|
|
ThemeData get theme {
|
|
switch (_configuration.stockMode) {
|
|
case StockMode.optimistic:
|
|
return new ThemeData(
|
|
brightness: Brightness.light,
|
|
primarySwatch: Colors.purple
|
|
);
|
|
case StockMode.pessimistic:
|
|
return new ThemeData(
|
|
brightness: Brightness.dark,
|
|
accentColor: Colors.redAccent
|
|
);
|
|
}
|
|
assert(_configuration.stockMode != null);
|
|
return null;
|
|
}
|
|
|
|
Route<Null> _getRoute(RouteSettings settings) {
|
|
// Routes, by convention, are split on slashes, like filesystem paths.
|
|
final List<String> path = settings.name.split('/');
|
|
// We only support paths that start with a slash, so bail if
|
|
// the first component is not empty:
|
|
if (path[0] != '')
|
|
return null;
|
|
// If the path is "/stock:..." then show a stock page for the
|
|
// specified stock symbol.
|
|
if (path[1].startsWith('stock:')) {
|
|
// We don't yet support subpages of a stock, so bail if there's
|
|
// any more path components.
|
|
if (path.length != 2)
|
|
return null;
|
|
// Extract the symbol part of "stock:..." and return a route
|
|
// for that symbol.
|
|
final String symbol = path[1].substring(6);
|
|
return new MaterialPageRoute<Null>(
|
|
settings: settings,
|
|
builder: (BuildContext context) => new StockSymbolPage(symbol: symbol, stocks: stocks),
|
|
);
|
|
}
|
|
// The other paths we support are in the routes table.
|
|
return null;
|
|
}
|
|
|
|
Future<LocaleQueryData> _onLocaleChanged(Locale locale) async {
|
|
final String localeString = locale.toString();
|
|
await initializeMessages(localeString);
|
|
Intl.defaultLocale = localeString;
|
|
return StockStrings.instance;
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
assert(() {
|
|
debugPaintSizeEnabled = _configuration.debugShowSizes;
|
|
debugPaintBaselinesEnabled = _configuration.debugShowBaselines;
|
|
debugPaintLayerBordersEnabled = _configuration.debugShowLayers;
|
|
debugPaintPointersEnabled = _configuration.debugShowPointers;
|
|
debugRepaintRainbowEnabled = _configuration.debugShowRainbow;
|
|
return true;
|
|
});
|
|
return new MaterialApp(
|
|
title: 'Stocks',
|
|
theme: theme,
|
|
debugShowMaterialGrid: _configuration.debugShowGrid,
|
|
showPerformanceOverlay: _configuration.showPerformanceOverlay,
|
|
showSemanticsDebugger: _configuration.showSemanticsDebugger,
|
|
routes: <String, WidgetBuilder>{
|
|
'/': (BuildContext context) => new StockHome(stocks, _configuration, configurationUpdater),
|
|
'/settings': (BuildContext context) => new StockSettings(_configuration, configurationUpdater)
|
|
},
|
|
onGenerateRoute: _getRoute,
|
|
onLocaleChanged: _onLocaleChanged
|
|
);
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
runApp(new StocksApp());
|
|
}
|