add reaction picker

This commit is contained in:
Salvatore Giordano
2020-09-01 15:09:47 +02:00
parent 0997867944
commit 8c17b268ae
13 changed files with 247 additions and 301 deletions
+11
View File
@@ -0,0 +1,11 @@
class ReactionAsset {
final String type;
final String svgAsset;
final String package;
ReactionAsset({
this.type,
this.svgAsset,
this.package,
});
}