Commit 6ea83f11 authored by Adam Barth's avatar Adam Barth

Merge pull request #1367 from abarth/update_navigation_example

Update navigation example
parents fb58141d 1424f351
...@@ -244,13 +244,11 @@ class FeedFragment extends StatefulComponent { ...@@ -244,13 +244,11 @@ class FeedFragment extends StatefulComponent {
}); });
} }
Anchor _snackBarAnchor = new Anchor();
Widget buildSnackBar() { Widget buildSnackBar() {
if (_snackBarStatus == AnimationStatus.dismissed) if (_snackBarStatus == AnimationStatus.dismissed)
return null; return null;
return new SnackBar( return new SnackBar(
showing: _isShowingSnackBar, showing: _isShowingSnackBar,
anchor: _snackBarAnchor,
content: new Text("Item deleted."), content: new Text("Item deleted."),
actions: [new SnackBarAction(label: "UNDO", onPressed: _handleUndo)], actions: [new SnackBarAction(label: "UNDO", onPressed: _handleUndo)],
onDismissed: () { setState(() { _snackBarStatus = AnimationStatus.dismissed; }); } onDismissed: () { setState(() { _snackBarStatus = AnimationStatus.dismissed; }); }
...@@ -267,11 +265,10 @@ class FeedFragment extends StatefulComponent { ...@@ -267,11 +265,10 @@ class FeedFragment extends StatefulComponent {
Widget buildFloatingActionButton() { Widget buildFloatingActionButton() {
switch (_fitnessMode) { switch (_fitnessMode) {
case FitnessMode.feed: case FitnessMode.feed:
return _snackBarAnchor.build( return new FloatingActionButton(
new FloatingActionButton( child: new Icon(type: 'content/add', size: 24),
child: new Icon(type: 'content/add', size: 24), onPressed: _handleActionButtonPressed
onPressed: _handleActionButtonPressed );
));
case FitnessMode.chart: case FitnessMode.chart:
return null; return null;
} }
......
...@@ -2,87 +2,65 @@ ...@@ -2,87 +2,65 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'package:sky/material.dart';
import 'package:sky/src/fn3.dart'; import 'package:sky/src/fn3.dart';
List<Route> routes = [ final Map<String, RouteBuilder> routes = <String, RouteBuilder>{
new Route( '/': (NavigatorState navigator, Route route) => new Container(
name: 'home', padding: const EdgeDims.all(30.0),
builder: (navigator, route) => new Container( decoration: new BoxDecoration(backgroundColor: const Color(0xFFCCCCCC)),
padding: const EdgeDims.all(30.0), child: new Column([
decoration: new BoxDecoration(backgroundColor: const Color(0xFFCCCCCC)), new Text("You are at home"),
child: new Column([ new RaisedButton(
new Text("You are at home"), child: new Text('GO SHOPPING'),
new RaisedButton( onPressed: () => navigator.pushNamed('/shopping')
child: new Text('GO SHOPPING'), ),
onPressed: () => navigator.pushNamed('shopping') new RaisedButton(
), child: new Text('START ADVENTURE'),
new RaisedButton( onPressed: () => navigator.pushNamed('/adventure')
child: new Text('START ADVENTURE'), )],
onPressed: () => navigator.pushNamed('adventure') justifyContent: FlexJustifyContent.center
)],
justifyContent: FlexJustifyContent.center
)
) )
), ),
new Route( '/shopping': (NavigatorState navigator, Route route) => new Container(
name: 'shopping', padding: const EdgeDims.all(20.0),
builder: (navigator, route) => new Container( decoration: new BoxDecoration(backgroundColor: const Color(0xFFBF5FFF)),
padding: const EdgeDims.all(20.0), child: new Column([
decoration: new BoxDecoration(backgroundColor: const Color(0xFFBF5FFF)), new Text("Village Shop"),
child: new Column([ new RaisedButton(
new Text("Village Shop"), child: new Text('RETURN HOME'),
new RaisedButton( onPressed: () => navigator.pop()
child: new Text('RETURN HOME'), ),
onPressed: () => navigator.pop() new RaisedButton(
), child: new Text('GO TO DUNGEON'),
new RaisedButton( onPressed: () => navigator.pushNamed('/adventure')
child: new Text('GO TO DUNGEON'), )],
onPressed: () => navigator.push(routes[2]) justifyContent: FlexJustifyContent.center
)],
justifyContent: FlexJustifyContent.center
)
) )
), ),
new Route( '/adventure': (NavigatorState navigator, Route route) => new Container(
name: 'adventure', padding: const EdgeDims.all(20.0),
builder: (navigator, route) => new Container( decoration: new BoxDecoration(backgroundColor: const Color(0xFFDC143C)),
padding: const EdgeDims.all(20.0), child: new Column([
decoration: new BoxDecoration(backgroundColor: const Color(0xFFDC143C)), new Text("Monster's Lair"),
child: new Column([ new RaisedButton(
new Text("Monster's Lair"), child: new Text('RUN!!!'),
new RaisedButton( onPressed: () => navigator.pop()
child: new Text('RUN!!!'), )],
onPressed: () => navigator.pop() justifyContent: FlexJustifyContent.center
)],
justifyContent: FlexJustifyContent.center
)
) )
) )
]; };
class NavigationExampleApp extends StatefulComponent { final ThemeData theme = new ThemeData(
NavigationExampleAppState createState() => new NavigationExampleAppState(); brightness: ThemeBrightness.light,
} primarySwatch: Colors.purple
);
class NavigationExampleAppState extends State<NavigationExampleApp> {
NavigatorHistory _history = new NavigatorHistory(routes);
void onBack() {
if (_history.hasPrevious()) {
setState(() {
_history.pop();
});
} else {
// TODO(abarth): Integrate with the system navigator.
// super.onBack();
}
}
Widget build(BuildContext context) {
return new Row([new Navigator(_history)]);
}
}
void main() { void main() {
runApp(new NavigationExampleApp()); runApp(new App(
title: 'Navigation Example',
theme: theme,
routes: routes
));
} }
...@@ -32,6 +32,7 @@ export 'fn3/ink_well.dart'; ...@@ -32,6 +32,7 @@ export 'fn3/ink_well.dart';
export 'fn3/input.dart'; export 'fn3/input.dart';
export 'fn3/material.dart'; export 'fn3/material.dart';
export 'fn3/material_button.dart'; export 'fn3/material_button.dart';
export 'fn3/mimic.dart';
export 'fn3/mixed_viewport.dart'; export 'fn3/mixed_viewport.dart';
export 'fn3/navigator.dart'; export 'fn3/navigator.dart';
export 'fn3/popup_menu.dart'; export 'fn3/popup_menu.dart';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment