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

Anywhere that accepted IconData now accepts either an Icon or an ImageIcon. Places that used to take an IconData in an `icon` argument, notably IconButton and DrawerItem, now take a Widget in that slot. You can wrap the value that used to be passed in in an Icon constructor to get the same result. Icon itself now takes the icon as a positional argument, for brevity. ThemeData now has an iconTheme as well as a primaryIconTheme, the same way it has had a textTheme and primaryTextTheme for a while. IconTheme.of() always returns a value now (though that value itself may have nulls in it). It defaults to the ThemeData.iconTheme. IconThemeData.fallback() is a new method that returns an icon theme data structure with all fields filled in. IconTheme.merge() is a new constructor that takes a context and creates a widget that mixes in the new values with the inherited values. Most places that introduced an IconTheme widget now use IconTheme.merge. IconThemeData.merge and IconThemeData.copyWith act in a way analogous to the similarly-named members of TextStyle. ImageIcon is introduced. It acts like Icon but takes an ImageProvider instead of an IconData. Also: Fix the analyzer to actually check the stocks app.
119 lines
3.7 KiB
Dart
119 lines
3.7 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.
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
class _Page {
|
|
_Page({ this.label, this.colors, this.icon });
|
|
|
|
final String label;
|
|
final Map<int, Color> colors;
|
|
final IconData icon;
|
|
|
|
TabLabel get tabLabel => new TabLabel(text: label.toUpperCase());
|
|
Color get labelColor => colors != null ? colors[300] : Colors.grey[300];
|
|
bool get fabDefined => colors != null && icon != null;
|
|
Color get fabColor => colors[400];
|
|
Icon get fabIcon => new Icon(icon);
|
|
Key get fabKey => new ValueKey<Color>(fabColor);
|
|
}
|
|
|
|
const String _explanatoryText =
|
|
"When the Scaffold's floating action button changes, the new button fades and "
|
|
"turns into view. In this demo, changing tabs can cause the app to be rebuilt "
|
|
"with a FloatingActionButton that the Scaffold distinguishes from the others "
|
|
"by its key.";
|
|
|
|
class TabsFabDemo extends StatefulWidget {
|
|
static const String routeName = '/tabs-fab';
|
|
|
|
@override
|
|
_TabsFabDemoState createState() => new _TabsFabDemoState();
|
|
}
|
|
|
|
class _TabsFabDemoState extends State<TabsFabDemo> {
|
|
final GlobalKey<ScaffoldState> scaffoldKey = new GlobalKey<ScaffoldState>();
|
|
final List<_Page> pages = <_Page>[
|
|
new _Page(label: 'Blue', colors: Colors.indigo, icon: Icons.add),
|
|
new _Page(label: 'Eco', colors: Colors.green, icon: Icons.create),
|
|
new _Page(label: 'No'),
|
|
new _Page(label: 'Teal', colors: Colors.teal, icon: Icons.add),
|
|
new _Page(label: 'Red', colors: Colors.red, icon: Icons.create),
|
|
];
|
|
_Page selectedPage;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
selectedPage = pages[0];
|
|
}
|
|
|
|
void _handleTabSelection(_Page page) {
|
|
setState(() {
|
|
selectedPage = page;
|
|
});
|
|
}
|
|
|
|
void _showExplanatoryText() {
|
|
scaffoldKey.currentState.showBottomSheet((BuildContext context) {
|
|
return new Container(
|
|
decoration: new BoxDecoration(
|
|
border: new Border(top: new BorderSide(color: Theme.of(context).dividerColor))
|
|
),
|
|
child: new Padding(
|
|
padding: const EdgeInsets.all(32.0),
|
|
child: new Text(_explanatoryText, style: Theme.of(context).textTheme.subhead)
|
|
)
|
|
);
|
|
});
|
|
}
|
|
|
|
Widget buildTabView(_Page page) {
|
|
return new Builder(
|
|
builder: (BuildContext context) {
|
|
return new Container(
|
|
key: new ValueKey<String>(page.label),
|
|
padding: const EdgeInsets.fromLTRB(48.0, 48.0, 48.0, 96.0),
|
|
child: new Card(
|
|
child: new Center(
|
|
child: new Text(page.label,
|
|
style: new TextStyle(
|
|
color: page.labelColor,
|
|
fontSize: 32.0
|
|
),
|
|
textAlign: TextAlign.center
|
|
)
|
|
)
|
|
)
|
|
);
|
|
}
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return new TabBarSelection<_Page>(
|
|
values: pages,
|
|
onChanged: _handleTabSelection,
|
|
child: new Scaffold(
|
|
key: scaffoldKey,
|
|
appBar: new AppBar(
|
|
title: new Text('FAB per tab'),
|
|
bottom: new TabBar<_Page>(
|
|
labels: new Map<_Page, TabLabel>.fromIterable(pages, value: (_Page page) => page.tabLabel)
|
|
)
|
|
),
|
|
floatingActionButton: !selectedPage.fabDefined ? null : new FloatingActionButton(
|
|
key: selectedPage.fabKey,
|
|
tooltip: 'Show explanation',
|
|
backgroundColor: selectedPage.fabColor,
|
|
child: selectedPage.fabIcon,
|
|
onPressed: _showExplanatoryText
|
|
),
|
|
body: new TabBarView<_Page>(children: pages.map(buildTabView).toList())
|
|
)
|
|
);
|
|
}
|
|
}
|