mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-02-17 14:30:40 +01:00
chore: Follow up appbar design
This commit is contained in:
parent
f39213ca9b
commit
b50355f33e
@ -254,10 +254,11 @@ class ChatView extends StatelessWidget {
|
||||
bottomRight:
|
||||
Radius.circular(AppConfig.borderRadius),
|
||||
),
|
||||
elevation: 6,
|
||||
elevation: 4,
|
||||
shadowColor: Theme.of(context)
|
||||
.dividerColor
|
||||
.withAlpha(100),
|
||||
.colorScheme
|
||||
.onBackground
|
||||
.withAlpha(64),
|
||||
clipBehavior: Clip.hardEdge,
|
||||
color: Theme.of(context).brightness ==
|
||||
Brightness.light
|
||||
|
@ -172,9 +172,9 @@ class Message extends StatelessWidget {
|
||||
padding: const EdgeInsets.only(left: 8),
|
||||
child: Material(
|
||||
color: noBubble ? Colors.transparent : color,
|
||||
elevation: event.type == EventTypes.Sticker ? 0 : 6,
|
||||
elevation: event.type == EventTypes.Sticker ? 0 : 4,
|
||||
shadowColor:
|
||||
Theme.of(context).secondaryHeaderColor.withAlpha(100),
|
||||
Theme.of(context).colorScheme.onBackground.withAlpha(64),
|
||||
borderRadius: borderRadius,
|
||||
clipBehavior: Clip.antiAlias,
|
||||
child: InkWell(
|
||||
|
@ -46,8 +46,9 @@ class ChatListHeader extends StatelessWidget implements PreferredSizeWidget {
|
||||
topLeft: Radius.circular(AppConfig.borderRadius),
|
||||
topRight: Radius.circular(AppConfig.borderRadius),
|
||||
),
|
||||
elevation: 6,
|
||||
shadowColor: Theme.of(context).dividerColor.withAlpha(100),
|
||||
elevation: 4,
|
||||
shadowColor:
|
||||
Theme.of(context).colorScheme.onBackground.withAlpha(64),
|
||||
child: TextField(
|
||||
controller: controller.searchController,
|
||||
textInputAction: TextInputAction.search,
|
||||
|
Loading…
x
Reference in New Issue
Block a user