Merge pull request #3001 from krille-chan/krille/design-follow-up-25

chore: Design follow up
pull/3000/head^2
Krille-chan 16 hours ago committed by GitHub
commit 836c3e521d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -352,9 +352,9 @@ class ChatView extends StatelessWidget {
decoration: BoxDecoration(
gradient: LinearGradient(
colors: [
theme.colorScheme.surfaceBright.withAlpha(0),
theme.colorScheme.surfaceBright,
theme.colorScheme.surfaceBright,
theme.colorScheme.surface.withAlpha(0),
theme.colorScheme.surface,
theme.colorScheme.surface,
],
begin: Alignment.topCenter,
end: Alignment.bottomCenter,

@ -130,8 +130,9 @@ class ChatListViewBody extends StatelessWidget {
),
],
if (client.rooms.isNotEmpty && !controller.isSearchMode)
SizedBox(
height: 46,
Container(
height: 44,
padding: EdgeInsets.only(bottom: 8),
child: ListView(
padding: const EdgeInsets.symmetric(horizontal: 12.0),
shrinkWrap: true,

@ -30,7 +30,7 @@ class ChatListHeader extends StatelessWidget implements PreferredSizeWidget {
return SliverAppBar(
floating: true,
toolbarHeight: 72,
toolbarHeight: 88,
pinned: FluffyThemes.isColumnMode(context),
scrolledUnderElevation: 0,
backgroundColor: Colors.transparent,
@ -58,7 +58,7 @@ class ChatListHeader extends StatelessWidget implements PreferredSizeWidget {
borderSide: BorderSide.none,
borderRadius: BorderRadius.circular(99),
),
contentPadding: EdgeInsets.zero,
contentPadding: EdgeInsets.all(16),
hintText: hide
? L10n.of(context).searchChatsRooms
: status.calcLocalizedString(context),

Loading…
Cancel
Save