Commit ea5fd815 authored by Chris Bracken's avatar Chris Bracken Committed by GitHub

Use dark theme in GridTileBar (#6527)

* Use dark theme in GridTileBar

Reduce IconTheme, Typography hardcoding by applying a dark theme to the
contents. This is still not ideal; the theme brightness should really be
driven by backgroundColor.

* Add back IconTheme

Since IconTheme.of() finds the closest IconTheme, not the closest
IconTheme or Theme (which specifies IconThemeData), the previous commit
doesn't necessarily override any IconThemes futher up the tree.
parent e0515f31
...@@ -7,7 +7,7 @@ import 'package:flutter/widgets.dart'; ...@@ -7,7 +7,7 @@ import 'package:flutter/widgets.dart';
import 'colors.dart'; import 'colors.dart';
import 'icon_theme.dart'; import 'icon_theme.dart';
import 'icon_theme_data.dart'; import 'icon_theme_data.dart';
import 'typography.dart'; import 'theme.dart';
/// A header used in a material design [GridTile]. /// A header used in a material design [GridTile].
/// ///
...@@ -77,6 +77,12 @@ class GridTileBar extends StatelessWidget { ...@@ -77,6 +77,12 @@ class GridTileBar extends StatelessWidget {
if (leading != null) if (leading != null)
children.add(new Padding(padding: const EdgeInsets.only(right: 8.0), child: leading)); children.add(new Padding(padding: const EdgeInsets.only(right: 8.0), child: leading));
ThemeData theme = Theme.of(context);
ThemeData darkTheme = new ThemeData(
brightness: Brightness.dark,
accentColor: theme.accentColor,
accentColorBrightness: theme.accentColorBrightness
);
if (title != null && subtitle != null) { if (title != null && subtitle != null) {
children.add( children.add(
new Flexible( new Flexible(
...@@ -84,13 +90,13 @@ class GridTileBar extends StatelessWidget { ...@@ -84,13 +90,13 @@ class GridTileBar extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start, crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[ children: <Widget>[
new DefaultTextStyle( new DefaultTextStyle(
style: Typography.white.subhead, style: darkTheme.textTheme.subhead,
softWrap: false, softWrap: false,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
child: title child: title
), ),
new DefaultTextStyle( new DefaultTextStyle(
style: Typography.white.caption, style: darkTheme.textTheme.caption,
softWrap: false, softWrap: false,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
child: subtitle child: subtitle
...@@ -103,7 +109,7 @@ class GridTileBar extends StatelessWidget { ...@@ -103,7 +109,7 @@ class GridTileBar extends StatelessWidget {
children.add( children.add(
new Flexible( new Flexible(
child: new DefaultTextStyle( child: new DefaultTextStyle(
style: Typography.white.subhead, style: darkTheme.textTheme.subhead,
softWrap: false, softWrap: false,
overflow: TextOverflow.ellipsis, overflow: TextOverflow.ellipsis,
child: title ?? subtitle child: title ?? subtitle
...@@ -118,12 +124,15 @@ class GridTileBar extends StatelessWidget { ...@@ -118,12 +124,15 @@ class GridTileBar extends StatelessWidget {
return new Container( return new Container(
padding: padding, padding: padding,
decoration: decoration, decoration: decoration,
child: new IconTheme.merge( child: new Theme(
context: context, data: darkTheme,
data: new IconThemeData(color: Colors.white), child: new IconTheme.merge(
child: new Row( context: context,
crossAxisAlignment: CrossAxisAlignment.center, data: new IconThemeData(color: Colors.white),
children: children child: new Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: children
)
) )
) )
); );
......
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