feat: Implement send reactions

This commit is contained in:
Christian Pauly 2020-09-20 20:13:42 +02:00
commit 4b77bbe688
3 changed files with 96 additions and 7 deletions

View file

@ -0,0 +1,30 @@
abstract class AppEmojis {
static const List<String> emojis = [
'👍',
'😊',
'😀',
'❤️',
'😍',
'😘',
'😇',
'😅',
'😭',
'😜',
'😱',
'😆',
'😉',
'😡',
'👋',
'🤔',
'🙁',
'🥳',
'😟',
'😄',
'😁',
'🙄',
'😂',
'🤣',
'😌',
'😬',
];
}