diff --git a/packages/flutter_widgets/example/lib/chat_info_screen.dart b/packages/flutter_widgets/example/lib/chat_info_screen.dart index 4106b96e..a6b14dec 100644 --- a/packages/flutter_widgets/example/lib/chat_info_screen.dart +++ b/packages/flutter_widgets/example/lib/chat_info_screen.dart @@ -382,7 +382,7 @@ class _ChatInfoScreenState extends State { child: Container( padding: const EdgeInsets.symmetric(horizontal: 8.0), constraints: BoxConstraints.tightFor( - width: 28, + width: 24, height: 12, ), child: Material( @@ -393,6 +393,10 @@ class _ChatInfoScreenState extends State { color: StreamChatTheme.of(context).colorTheme.white, ), alternativeWidget, + if (widget.user.online) + SizedBox( + width: 24.0, + ), ], ); }