mirror of
https://github.com/Iconica-Development/flutter_input_library.git
synced 2025-05-18 17:03:45 +02:00
fix: linter
This commit is contained in:
parent
26c5ab03cf
commit
9a81543e8c
1 changed files with 3 additions and 3 deletions
|
@ -149,7 +149,7 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||
onChanged: (value) {},
|
||||
childToString: (s) =>
|
||||
s != null ? weekDayDateFormat.format(s) : '',
|
||||
decoration: ScrollPickerDecoration(),
|
||||
decoration: const ScrollPickerDecoration(),
|
||||
),
|
||||
const Text('FlutterFormInputScrollPicker: Months'),
|
||||
const SizedBox(
|
||||
|
@ -160,7 +160,7 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||
onChanged: (value) {},
|
||||
childToString: (s) =>
|
||||
s != null ? monthDateFormat.format(s) : '',
|
||||
decoration: ScrollPickerDecoration(),
|
||||
decoration: const ScrollPickerDecoration(),
|
||||
),
|
||||
const Padding(
|
||||
padding: EdgeInsets.all(8.0),
|
||||
|
@ -174,7 +174,7 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||
values: years,
|
||||
onChanged: (value) {},
|
||||
childToString: (s) => s?.year.toString() ?? '',
|
||||
decoration: ScrollPickerDecoration(),
|
||||
decoration: const ScrollPickerDecoration(),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
Loading…
Reference in a new issue