mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-16 02:05:06 +08:00
Completion on emoji
This commit is contained in:
parent
9e73e95f55
commit
5fa2acf60b
@ -53,6 +53,15 @@ class EmojiDataSource @Inject constructor(
|
||||
}
|
||||
|
||||
fun getQuickReactions(): List<EmojiItem> {
|
||||
return listOf("👍", "👎", "😄", "🎉", "😕", "❤️", "🚀", "👀").mapNotNull { rawData.emojis[it] }
|
||||
return listOf(
|
||||
"+1", // 👍
|
||||
"-1", // 👎
|
||||
"grinning", // 😄
|
||||
"tada", // 🎉
|
||||
"confused", // 😕
|
||||
"heart", // ❤️
|
||||
"rocket", // 🚀
|
||||
"eyes" // 👀
|
||||
).mapNotNull { rawData.emojis[it] }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user