-
Notifications
You must be signed in to change notification settings - Fork 187
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Emojis in custom reaction bottomsheet are too tiny #2074
Emojis in custom reaction bottomsheet are too tiny #2074
Conversation
...ne.components.customreaction_EmojiPicker_null_EmojiPicker-Day-31_31_null,NEXUS_5,1.0,en].png
Outdated
Show resolved
Hide resolved
📱 Scan the QR code below to install the build (arm64 only) for this PR. |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## develop #2074 +/- ##
===========================================
+ Coverage 67.53% 67.54% +0.01%
===========================================
Files 1357 1358 +1
Lines 33822 33817 -5
Branches 7274 7272 -2
===========================================
+ Hits 22841 22843 +2
+ Misses 7523 7517 -6
+ Partials 3458 3457 -1 ☔ View full report in Codecov by Sentry. |
@@ -65,7 +69,7 @@ fun EmojiPicker( | |||
) { | |||
EmojibaseCategory.entries.forEachIndexed { index, category -> | |||
Tab( | |||
text = { | |||
icon = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💯
@@ -87,15 +91,18 @@ fun EmojiPicker( | |||
val emojis = categories[category] ?: listOf() | |||
LazyVerticalGrid( | |||
modifier = Modifier.fillMaxSize(), | |||
columns = GridCells.Adaptive(minSize = 40.dp), | |||
columns = GridCells.Adaptive(minSize = 60.dp), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree this is way too large. Users want to see as many as Emoji as possible. On my phone it's currently 8 columns and it's OK for me. Also we do not have a way to filter Emoji (search), so better to see more Emojis.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe use 48
as it is the classical recommended touch area size?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, do we have some info now to search for emojis? Is Emoji.label
intended for this, and is it localised?
|
Type of change
Content
Motivation and context
Fixes #2066.
Screenshots / GIFs
Tests
Tested devices
Checklist