JeffG05/emoji_picker

Unnecessary White Space with BottomSheet

Opened this issue · 0 comments

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