Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class __IntegerExampleState extends State<_IntegerExample> {
return Column(
children: <Widget>[
SizedBox(height: 16),
Text('Default', style: Theme.of(context).textTheme.headline6),
Text('Default', style: Theme.of(context).textTheme.titleLarge),
NumberPicker(
value: _currentIntValue,
minValue: 0,
Expand Down Expand Up @@ -95,7 +95,7 @@ class __IntegerExampleState extends State<_IntegerExample> {
),
Divider(color: Colors.grey, height: 32),
SizedBox(height: 16),
Text('Horizontal', style: Theme.of(context).textTheme.headline6),
Text('Horizontal', style: Theme.of(context).textTheme.titleLarge),
NumberPicker(
value: _currentHorizontalIntValue,
minValue: 0,
Expand Down Expand Up @@ -148,7 +148,7 @@ class __DecimalExampleState extends State<_DecimalExample> {
return Column(
children: <Widget>[
SizedBox(height: 16),
Text('Decimal', style: Theme.of(context).textTheme.headline6),
Text('Decimal', style: Theme.of(context).textTheme.titleLarge),
DecimalNumberPicker(
value: _currentDoubleValue,
minValue: 0,
Expand Down