mirror of
https://github.com/Iconica-Development/flutter_input_library.git
synced 2025-05-18 17:03:45 +02:00
fix: comments
This commit is contained in:
parent
aeb65430c3
commit
26c5ab03cf
2 changed files with 3 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
class ScrollPickerDecoration {
|
||||
ScrollPickerDecoration({
|
||||
const ScrollPickerDecoration({
|
||||
this.scrollItemBuilder,
|
||||
this.highlightWidget,
|
||||
this.scrollItemTextStyle,
|
||||
|
|
|
@ -11,8 +11,8 @@ class ScrollPicker extends StatefulWidget {
|
|||
required this.onChanged,
|
||||
required this.decoration,
|
||||
this.initialIndex,
|
||||
Key? key,
|
||||
}) : super(key: key);
|
||||
super.key,
|
||||
});
|
||||
|
||||
final List<String> list;
|
||||
final void Function(int index) onChanged;
|
||||
|
|
Loading…
Reference in a new issue