Skip to content

Commit 6fdb367

Browse files
committed
style: apply dart format to all files for CI compliance
1 parent adfcef5 commit 6fdb367

5 files changed

Lines changed: 7 additions & 8 deletions

File tree

lib/src/config/themes/dark/dark_theme.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ class DarkTheme {
107107
// Sliding color
108108
secondary: const Color(0xFFF8F3F7),
109109
surface: const Color(0xFF181818),
110-
), tabBarTheme: const TabBarThemeData(indicatorColor: Color(0xB3F8F3F7)),
110+
),
111+
tabBarTheme: const TabBarThemeData(indicatorColor: Color(0xB3F8F3F7)),
111112
);
112113
}

lib/src/config/themes/light/light_theme.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ class LightTheme {
107107
// Sliding color
108108
secondary: const Color(0xFF181818),
109109
surface: const Color(0xFFF8F3F7),
110-
), tabBarTheme: const TabBarThemeData(indicatorColor: Color(0xB3181818)),
110+
),
111+
tabBarTheme: const TabBarThemeData(indicatorColor: Color(0xB3181818)),
111112
);
112113
}

lib/src/presentation/edit/view/widgets/save_modal_bottom_sheet.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ class SaveModalBottomSheet extends StatelessWidget {
5050

5151
Get.back<void>();
5252
},
53-
overlayColor:
54-
WidgetStateProperty.all(Colors.transparent),
53+
overlayColor: WidgetStateProperty.all(Colors.transparent),
5554
highlightColor: Colors.transparent,
5655
child: Obx(
5756
() {

lib/src/presentation/edit/view/widgets/settings_modal_bottom_sheet.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ class SettingsModalBottomSheet extends StatelessWidget {
4646
),
4747
InkWell(
4848
onTap: Get.back<void>,
49-
overlayColor:
50-
WidgetStateProperty.all(Colors.transparent),
49+
overlayColor: WidgetStateProperty.all(Colors.transparent),
5150
highlightColor: Colors.transparent,
5251
child: SvgPicture.asset(
5352
kCloseIconPath,

lib/src/presentation/more/view/widgets/settings_bottom_sheet_widget.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ class _SettingsBottomSheetWidget extends StatelessWidget {
4444
),
4545
InkWell(
4646
onTap: Get.back<void>,
47-
overlayColor:
48-
WidgetStateProperty.all(Colors.transparent),
47+
overlayColor: WidgetStateProperty.all(Colors.transparent),
4948
highlightColor: Colors.transparent,
5049
child: SvgPicture.asset(
5150
kCloseIconPath,

0 commit comments

Comments
 (0)