chore: Adjust emoji picker design
This commit is contained in:
parent
85bebb796c
commit
fac2e5bde3
1 changed files with 9 additions and 3 deletions
|
|
@ -55,6 +55,7 @@ class ChatEmojiPicker extends StatelessWidget {
|
||||||
theme.colorScheme.primary.withAlpha(128),
|
theme.colorScheme.primary.withAlpha(128),
|
||||||
iconColorSelected: theme.colorScheme.primary,
|
iconColorSelected: theme.colorScheme.primary,
|
||||||
indicatorColor: theme.colorScheme.primary,
|
indicatorColor: theme.colorScheme.primary,
|
||||||
|
backgroundColor: theme.colorScheme.surface,
|
||||||
),
|
),
|
||||||
skinToneConfig: SkinToneConfig(
|
skinToneConfig: SkinToneConfig(
|
||||||
dialogBackgroundColor: Color.lerp(
|
dialogBackgroundColor: Color.lerp(
|
||||||
|
|
@ -96,9 +97,14 @@ class NoRecent extends StatelessWidget {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Text(
|
return Center(
|
||||||
L10n.of(context).emoteKeyboardNoRecents,
|
child: Padding(
|
||||||
style: Theme.of(context).textTheme.bodyLarge,
|
padding: const EdgeInsets.all(16.0),
|
||||||
|
child: Text(
|
||||||
|
L10n.of(context).emoteKeyboardNoRecents,
|
||||||
|
style: Theme.of(context).textTheme.bodyLarge,
|
||||||
|
),
|
||||||
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue