We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ffac2 commit 4c42364Copy full SHA for 4c42364
lib/widgets/emoji_reaction.dart
@@ -599,10 +599,9 @@ class EmojiPickerListEntry extends StatelessWidget {
599
child: Padding(
600
padding: const EdgeInsets.symmetric(horizontal: 8),
601
child: Row(spacing: 4, children: [
602
- if (glyph != null)
603
- Padding(
+ Padding(
604
padding: const EdgeInsets.all(10),
605
- child: glyph),
+ child: glyph ?? SizedBox(width: _emojiSize, height: _emojiSize)),
606
Flexible(child: Text(label,
607
maxLines: 2,
608
overflow: TextOverflow.ellipsis,
0 commit comments