Better char counter and custom emoji in compose

This commit is contained in:
Grishka
2022-02-02 09:40:29 +03:00
parent b9bdf7caec
commit c885a5fc28
19 changed files with 927 additions and 16 deletions

View File

@@ -0,0 +1,13 @@
package org.joinmastodon.android.model;
import java.util.List;
public class EmojiCategory{
public String title;
public List<Emoji> emojis;
public EmojiCategory(String title, List<Emoji> emojis){
this.title=title;
this.emojis=emojis;
}
}