Skip to content

Commit 09dd4dc

Browse files
authored
Merge pull request #6 from DISCOOS/master
Removed unwanted top and bottom padding from ListView
2 parents 45ea04f + 3637144 commit 09dd4dc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/src/chips_input.dart

+1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ class ChipsInputState<T> extends State<ChipsInput<T>>
137137
elevation: 4.0,
138138
child: ListView.builder(
139139
shrinkWrap: true,
140+
padding: EdgeInsets.zero,
140141
itemCount: snapshot.data?.length ?? 0,
141142
itemBuilder: (BuildContext context, int index) {
142143
return widget.suggestionBuilder(

0 commit comments

Comments
 (0)