add scroll to bottom fab

This commit is contained in:
Salvatore Giordano
2020-10-20 10:11:43 +02:00
parent 87bc225fe3
commit 9be191b856
3 changed files with 176 additions and 109 deletions
+11
View File
@@ -0,0 +1,11 @@
import 'package:flutter/material.dart';
class ReactionIcon {
final String type;
final IconData iconData;
ReactionIcon({
this.type,
this.iconData,
});
}