diff --git a/lib/pages/chat/chat_view.dart b/lib/pages/chat/chat_view.dart index 0aab7b5fe..e24b93081 100644 --- a/lib/pages/chat/chat_view.dart +++ b/lib/pages/chat/chat_view.dart @@ -145,6 +145,7 @@ class ChatView extends StatelessWidget { context: context, future: () => controller.room!.join()); } final bottomSheetPadding = FluffyThemes.isColumnMode(context) ? 16.0 : 8.0; + final colorScheme = Theme.of(context).colorScheme; return VWidgetGuard( onSystemPop: (redirector) async { @@ -213,6 +214,20 @@ class ChatView extends StatelessWidget { height: double.infinity, fit: BoxFit.cover, filterQuality: FilterQuality.medium, + ) + else + Container( + decoration: BoxDecoration( + gradient: LinearGradient( + begin: Alignment.topCenter, + colors: [ + colorScheme.primaryContainer.withAlpha(32), + colorScheme.secondaryContainer.withAlpha(32), + colorScheme.tertiaryContainer.withAlpha(32), + colorScheme.primaryContainer.withAlpha(32), + ], + ), + ), ), SafeArea( child: Column(