chore: Follow up input bar design
This commit is contained in:
parent
2e46ea7fd6
commit
6d4ee4ad6f
1 changed files with 9 additions and 7 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue