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