enlarge emojis on emoji overlay
This commit is contained in:
parent
63183e0824
commit
30b922d390
1 changed files with 4 additions and 1 deletions
|
|
@ -27,7 +27,10 @@ class const EmojiOverlay(
|
|||
)
|
||||
.map(
|
||||
(emoji) => ListTile(
|
||||
leading: emoji.widget,
|
||||
leading: SizedBox.square(
|
||||
dimension: 28,
|
||||
child: FittedBox(child: emoji.widget),
|
||||
),
|
||||
title: Text(emoji.aliases.first),
|
||||
subtitle: Text(emoji.description),
|
||||
onTap: () => addTag(
|
||||
|
|
|
|||
Loading…
Reference in a new issue