Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
hazarbelge committed Jul 31, 2022
1 parent ddbb346 commit b274eb6
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 82 deletions.
File renamed without changes.
1 change: 0 additions & 1 deletion lib/core/theme/constants/index.dart

This file was deleted.

75 changes: 0 additions & 75 deletions lib/core/theme/constants/text_styles.dart

This file was deleted.

File renamed without changes.
7 changes: 3 additions & 4 deletions lib/core/theme/index.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export 'color/colors.dart';
export 'constants/index.dart';
export 'icon/icons.dart';
export 'theme.dart';
export 'colors.dart';
export 'icons.dart';
export 'style.dart';
File renamed without changes.
10 changes: 8 additions & 2 deletions lib/features/splash/screen/splash_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,10 @@ class SplashIcon extends GetView<SplashScreenController> {
fit: BoxFit.scaleDown,
child: Text(
'app.title'.tr,
style: TextStyles.primary24W600,
style: const TextStyle(
fontSize: 24,
fontWeight: FontWeight.w600,
),
),
),
],
Expand Down Expand Up @@ -131,7 +134,10 @@ class HomeButtons extends GetView<SplashScreenController> {
child: Center(
child: Text(
state?.guestSessionId ?? "",
style: TextStyles.primary8W300,
style: const TextStyle(
fontSize: 8,
fontWeight: FontWeight.w300,
),
),
),
),
Expand Down

0 comments on commit b274eb6

Please sign in to comment.