From 969eeff636e5d185ba20d1c00fb595121d9d24c3 Mon Sep 17 00:00:00 2001 From: Sahil Yeole Date: Sun, 3 Sep 2023 18:18:44 +0530 Subject: [PATCH] add ios chat window border Signed-off-by: Sahil Yeole --- flutter/lib/common/widgets/overlay.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flutter/lib/common/widgets/overlay.dart b/flutter/lib/common/widgets/overlay.dart index f2f3b8fb0..45fa46195 100644 --- a/flutter/lib/common/widgets/overlay.dart +++ b/flutter/lib/common/widgets/overlay.dart @@ -400,7 +400,8 @@ void initState() { Container( width: _width, height: _height, - child: widget.builder(context), + decoration: BoxDecoration(border: Border.all(color: MyTheme.border)), + child: widget.builder(context), ), ), ),