Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/app_center/lib/layout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const kPagePadding = 24.0;
const kSpacingSmall = 8.0;
const kSpacing = 16.0;
const kSearchBarWidth = 424.0 - 2 * kCardMargin;
const kIconSize = 56.0;
const kIconSize = 52.0;
const kSectionSpacing = 48.0;

const kCardSizeNormal = Size(416.0, 170.0);
Expand Down
7 changes: 2 additions & 5 deletions packages/app_center/lib/widgets/app_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class AppCard extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
AppIcon(iconUrl: iconUrl),
const SizedBox(width: kCardSpacing, height: kCardSpacing),
const SizedBox(width: kCardSpacing),
Expanded(
child: _AppCardBody(
title: title,
Expand Down Expand Up @@ -278,10 +278,7 @@ class _AppCardBody extends StatelessWidget {
ExcludeSemantics(
child: Container(
constraints: BoxConstraints(minHeight: kIconSize),
child: Align(
alignment: Alignment.bottomLeft,
child: title,
),
child: title,
),
),
if (summary.isNotEmpty) ...[
Expand Down
Loading