Skip to content

Commit

Permalink
Fix issue of GridView padding is affected by media query (#17)
Browse files Browse the repository at this point in the history
* Make sure GridView padding won't be affected by media query

* Update CHANGELOG.md
  • Loading branch information
Fintasys authored May 27, 2021
1 parent 2927f83 commit 713edec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* Fix appearance of emoji when device font size is not default 🖥
* Add Backspace-Button & OnBackspacePressed-Callback for easier deletion of added Emoji's
* Fix issue with GridView padding at the top when no AppBar exist in Scaffold

## 1.0.4

Expand Down
1 change: 1 addition & 0 deletions lib/src/default_emoji_picker_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ class _DefaultEmojiPickerViewState extends State<DefaultEmojiPickerView>
physics: const ScrollPhysics(),
shrinkWrap: true,
primary: true,
padding: const EdgeInsets.all(0),
crossAxisCount: widget.config.columns,
mainAxisSpacing: widget.config.verticalSpacing,
crossAxisSpacing: widget.config.horizontalSpacing,
Expand Down

0 comments on commit 713edec

Please sign in to comment.