I've been trying to figure out how to open up the emoji keyboard in Jetpack Compose. Since there is no specific KeyboardType
instance for emojis in order for us to use as input type in TextField
which would be awesome if they had in the first place in Compose. I don't want to use custom emoji keyboard solutions like Emoji or SuperNova-Emoji unless I don't find any other native Compose solution. Do you guys know how to achieve this in Jetpack Compose?
How to open up emoji keyboard in Jetpack Compose?
Asked Answered
© 2022 - 2024 — McMap. All rights reserved.
EditText
or Compose'sTextField
. It feels like Jetpack Compose or any other new or existing Android APIs should offer this functionality for us to use in our apps since emoji usage accelerated in recent years. Enabling emoji as an input type removes the burden of creating custom solutions for a simple problem that is so resolvable just by adding it. I hope, Google would make this minor functionality in their future API updates. – Gomar