Skip to content

Commit

Permalink
Lint fixes in example/
Browse files Browse the repository at this point in the history
  • Loading branch information
WieFel committed Aug 11, 2023
1 parent 0594f13 commit d9472b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion example/lib/builder_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class _BuilderPageState extends State<BuilderPage> {
(index) => Center(
child: Text(
"Page ${index + 1}",
style: Theme.of(context).textTheme.headline1,
style: Theme.of(context).textTheme.displayLarge,
),
),
);
Expand Down
2 changes: 1 addition & 1 deletion example/lib/dropdown_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class _DropdownPageState extends State<DropdownPage> {
(index) => Center(
child: Text(
"Page ${index + 1}",
style: Theme.of(context).textTheme.headline1,
style: Theme.of(context).textTheme.displayLarge,
),
),
);
Expand Down
2 changes: 1 addition & 1 deletion example/lib/numbers_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class _NumbersPageState extends State<NumbersPage> {
(index) => Center(
child: Text(
"Page ${index + 1}",
style: Theme.of(context).textTheme.headline1,
style: Theme.of(context).textTheme.displayLarge,
),
),
);
Expand Down
2 changes: 1 addition & 1 deletion example/lib/only_arrows_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class _OnlyArrowsPageState extends State<OnlyArrowsPage> {
(index) => Center(
child: Text(
"Page ${index + 1}",
style: Theme.of(context).textTheme.headline1,
style: Theme.of(context).textTheme.displayLarge,
),
),
);
Expand Down

0 comments on commit d9472b7

Please sign in to comment.