Skip to content

Commit 76c81a9

Browse files
committed
style(feed): add padding to source filter page
- Added top padding to column
1 parent 59dea22 commit 76c81a9

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

lib/headlines-feed/view/source_filter_page.dart

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,15 +123,18 @@ class _SourceFilterView extends StatelessWidget {
123123
);
124124
}
125125

126-
return Column(
127-
crossAxisAlignment: CrossAxisAlignment.start,
128-
children: [
126+
return Padding(
127+
padding: const EdgeInsets.only(top: AppSpacing.md),
128+
child: Column(
129+
crossAxisAlignment: CrossAxisAlignment.start,
130+
children: [
129131
_buildCountryCapsules(context, state, l10n),
130132
const SizedBox(height: AppSpacing.lg),
131133
_buildSourceTypeCapsules(context, state, l10n),
132134
const SizedBox(height: AppSpacing.lg),
133135
Expanded(child: _buildSourcesList(context, state, l10n)),
134-
],
136+
],
137+
),
135138
);
136139
}
137140

0 commit comments

Comments
 (0)