Skip to content

Commit

Permalink
fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
SolMendiola committed Dec 19, 2023
1 parent af45bc7 commit 775e4bf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion catalog/gallery/lib/catalog/catalog_app_colors_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ class CatalogAppColorsScreen extends StatelessWidget {
Widget build(BuildContext context) => CatalogScaffold(
title: 'COLORS',
child: ListView.separated(
shrinkWrap: true,
separatorBuilder: (BuildContext context, int index) =>
const Divider(),
itemCount: _CatalogColors.values.length,
Expand Down
2 changes: 1 addition & 1 deletion catalog/gallery/lib/catalog/catalog_scaffold_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class CatalogScaffold extends StatelessWidget {
),
),
),
backgroundColor: context.theme.customColors.textColor!.getShade(1000),
backgroundColor: context.theme.customColors.textColor!.getShade(100),
body: SafeArea(
child: child,
),
Expand Down
3 changes: 2 additions & 1 deletion catalog/lib/theme/app_theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@ extension ThemeExtensions on ThemeData {

CustomTextStyles get customTextStyles => extension<CustomTextStyles>()!;

TextTheme get textStyles => AppTextStyles.getDefaultAppStyles().getThemeData();
TextTheme get textStyles =>
AppTextStyles.getDefaultAppStyles().getThemeData();
}

0 comments on commit 775e4bf

Please sign in to comment.