chore: Follow up input bar design

This commit is contained in:
Krille 2024-03-25 09:04:02 +01:00
parent 2e46ea7fd6
commit 6d4ee4ad6f
No known key found for this signature in database
GPG key ID: E067ECD60F1A0652

View file

@ -292,18 +292,20 @@ class ChatView extends StatelessWidget {
),
),
clipBehavior: Clip.hardEdge,
color: Theme.of(context).colorScheme.background,
color: Theme.of(context).brightness ==
Brightness.light
? Colors.white
: Colors.black,
child: Material(
color: Theme.of(context)
.colorScheme
.primary
.withOpacity(0.1),
elevation: Theme.of(context)
.appBarTheme
.scrolledUnderElevation ??
0,
shadowColor:
Theme.of(context).appBarTheme.shadowColor,
elevation: 4.0,
shadowColor: Theme.of(context)
.colorScheme
.onBackground
.withOpacity(0.33),
child: controller.room.isAbandonedDMRoom ==
true
? Row(