-
Notifications
You must be signed in to change notification settings - Fork 150
Open
Description
Wrap EmojiPicker
by Expand
widget.
-
Expected: EmojiView is expanded.
-
Current result: EmojiView is NOT expanded.
EmojiView is NOT expanded as its height is fixed by height
of Config()
. I found the SizedBox
is problem.
Widget _buildEmojiView() {
return _wrapScrollBehaviorForPlatforms(
SizedBox(
height: widget.config.height,
child: widget.customWidget == null
? DefaultEmojiPickerView(
widget.config,
_state,
_showSearchView,
)
: widget.customWidget!(
widget.config,
_state,
_showSearchView,
),
),
);
}
Metadata
Metadata
Assignees
Labels
No labels