chore: Follow up input bar design

pull/953/head
Krille 2 years ago
parent 2e46ea7fd6
commit 6d4ee4ad6f
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

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

Loading…
Cancel
Save