diff --git a/mdc_100_series/lib/app.dart b/mdc_100_series/lib/app.dart index 72fe6cd0d0..8dae7098d5 100644 --- a/mdc_100_series/lib/app.dart +++ b/mdc_100_series/lib/app.dart @@ -85,17 +85,17 @@ ThemeData _buildShrineTheme() { TextTheme _buildShrineTextTheme(TextTheme base) { return base.copyWith( - headline: base.headline.copyWith( + headline5: base.headline5.copyWith( fontWeight: FontWeight.w500, ), - title: base.title.copyWith( + headline6: base.headline6.copyWith( fontSize: 18.0 ), caption: base.caption.copyWith( fontWeight: FontWeight.w400, fontSize: 14.0, ), - body2: base.body2.copyWith( + bodyText1: base.bodyText1.copyWith( fontWeight: FontWeight.w500, fontSize: 16.0, ), diff --git a/mdc_100_series/lib/login.dart b/mdc_100_series/lib/login.dart index 992e8db93a..d01d26d122 100644 --- a/mdc_100_series/lib/login.dart +++ b/mdc_100_series/lib/login.dart @@ -39,7 +39,7 @@ class _LoginPageState extends State { SizedBox(height: 16.0), Text( 'SHRINE', - style: Theme.of(context).textTheme.headline, + style: Theme.of(context).textTheme.headline5, ), ], ),