JeffG05 / emoji_picker

A Flutter package that provides an Emoji Keyboard widget
https://pub.dev/packages/emoji_picker
BSD 2-Clause "Simplified" License
84 stars 91 forks source link

Unnecessary White Space with BottomSheet #39

Open cloudy-ninja opened 3 years ago

cloudy-ninja commented 3 years ago

I am using this picker with bottomsheet. as you can see, it is showing unnecessary white space. how can I remove this?

 showModalBottomSheet<void>(
    context: context,
    builder: (BuildContext context) {
      return EmojiPicker(
        rows: 3,
        columns: 7,
        recommendKeywords: ["racing", "horse"],
        numRecommended: 10,
        onEmojiSelected: (emoji, category) {
          print(emoji);
        },
      );
    },
  );

image