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 f1fa5e6 commit 73281ddCopy full SHA for 73281dd
lib/widgets/emoji_reaction.dart
@@ -160,7 +160,8 @@ class ReactionChip extends StatelessWidget {
160
children: [
161
// So text-emoji chips are at least as tall as square-emoji
162
// ones (probably a good thing).
163
- SizedBox(height: _squareEmojiScalerClamped(context).scale(_squareEmojiSize)),
+ // 2 is for the `vertical: 1` padding around `emoji`.
164
+ SizedBox(height: _squareEmojiScalerClamped(context).scale(_squareEmojiSize) + 2),
165
Flexible( // [Flexible] to let text emojis expand if they can
166
child: Padding(padding: const EdgeInsets.symmetric(horizontal: 3, vertical: 1),
167
child: emoji)),
0 commit comments