chore: Follow up message bubble design
This commit is contained in:
parent
6073b46cfc
commit
e0e1b65f77
3 changed files with 9 additions and 3 deletions
|
|
@ -9,8 +9,9 @@ import 'image_bubble.dart';
|
|||
|
||||
class Sticker extends StatefulWidget {
|
||||
final Event event;
|
||||
final BorderRadius borderRadius;
|
||||
|
||||
const Sticker(this.event, {super.key});
|
||||
const Sticker(this.event, {required this.borderRadius, super.key});
|
||||
|
||||
@override
|
||||
StickerState createState() => StickerState();
|
||||
|
|
@ -26,6 +27,7 @@ class StickerState extends State<Sticker> {
|
|||
width: 256,
|
||||
height: 256,
|
||||
fit: BoxFit.contain,
|
||||
borderRadius: widget.borderRadius,
|
||||
onTap: () {
|
||||
setState(() => animated = true);
|
||||
showOkAlertDialog(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue