diff --git a/lib/components/image_bubble.dart b/lib/components/image_bubble.dart index c257e1d..339dfc1 100644 --- a/lib/components/image_bubble.dart +++ b/lib/components/image_bubble.dart @@ -28,14 +28,14 @@ class _ImageBubbleState extends State { @override Widget build(BuildContext context) { - final int size = 400; return Bubble( padding: BubbleEdges.all(0), radius: Radius.circular(10), + color: Theme.of(context).secondaryHeaderColor, elevation: 0, child: Container( - height: size.toDouble(), - width: size.toDouble(), + height: 300, + width: 400, child: Builder( builder: (BuildContext context) { if (_error != null) { @@ -50,8 +50,6 @@ class _ImageBubbleState extends State { onTap: () => _file.open(), child: Image.memory( _file.bytes, - width: size.toDouble(), - height: size.toDouble(), fit: BoxFit.cover, ), );