Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanschaller committed Jul 11, 2024
1 parent 50fb457 commit 61fcc76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ class _ExampleAppState extends State<ExampleApp> {
onChanged: (value) {
setState(() => _text = value);
},
decoration: const InputDecoration(label: Text("Enter some text")),
decoration:
const InputDecoration(label: Text("Enter some text")),
textStyle: const TextStyle(),
validator: (input) {
if (input == null || input.isEmpty) {
Expand Down
2 changes: 1 addition & 1 deletion lib/src/custom_drop_down/custom_drop_down.dart
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ class CustomDropDownState<T> extends State<CustomDropDown<T>>
: null,
item: widget.items[i],
),
]
],
],
),
);
Expand Down

0 comments on commit 61fcc76

Please sign in to comment.