Skip to content

Commit

Permalink
Merge pull request #103 from MarcinusX/safe_area_fix
Browse files Browse the repository at this point in the history
Added `padding: EdgeInsets.zero` to ListView to make it work without SafeArea
  • Loading branch information
MarcinusX committed Apr 13, 2021
2 parents 41204b2 + 482bc74 commit 175b8e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,7 @@

* Added missing params in decimal numberpicker. #99
* Fixed `itemCount` parameter to actually work. #87
* Added `padding: EdgeInsets.zero` to ListView to make it work without SafeArea. #74

## [2.0.1]

Expand Down
1 change: 1 addition & 0 deletions lib/src/numberpicker.dart
Expand Up @@ -158,6 +158,7 @@ class _NumberPickerState extends State<NumberPicker> {
controller: _scrollController,
itemExtent: itemExtent,
itemBuilder: _itemBuilder,
padding: EdgeInsets.zero,
),
_NumberPickerSelectedItemDecoration(
axis: widget.axis,
Expand Down

0 comments on commit 175b8e1

Please sign in to comment.