Skip to content

Commit ee0cb21

Browse files
committed
♻️ Fixes analytical issues in code.
1 parent 154eea2 commit ee0cb21

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

lib/feature/home/home_page_clock.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class HomePageClock extends StatelessWidget {
6464
),
6565
child: Row(
6666
children: [
67-
Spacer(),
67+
const Spacer(),
6868
const TimeZoneInfo(),
6969
],
7070
),
@@ -82,7 +82,7 @@ class HomePageClock extends StatelessWidget {
8282
child: Row(
8383
children: [
8484
const DayInfo(),
85-
Spacer(),
85+
const Spacer(),
8686
],
8787
),
8888
),

lib/feature/home/tab_bar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class _TimeZoneTabState extends State<TimeZoneTab>
7373
width: 5,
7474
color: CustomTheme.instance.accentTextColor,
7575
),
76-
insets: EdgeInsets.symmetric(horizontal: 30),
76+
insets: const EdgeInsets.symmetric(horizontal: 30),
7777
),
7878
tabs: [
7979
InkWellButton(

lib/service/navigation_service/world_clock_router_delegate.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ class WorldClockRouterDelegate extends RouterDelegate<WorldClockRouteConfig>
3434
// Generate new navigator stack.
3535
_generateNavigatorStack(context);
3636

37-
print("Pages: ${_pages.length}");
38-
_pages.forEach((e) => debugPrint(e.toString()));
39-
4037
return Navigator(
4138
key: navigatorKey,
4239
pages: pages,

lib/widget/location_tile/location_tile.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import '../../app_services.dart';
55
import '../../models/hive_timezone/hive_timezone.dart';
66
import '../../service/constants.dart';
77
import '../../service/extension.dart';
8-
import '../../service/hive/hive_main.dart';
98
import '../../service/theme/theme.dart';
109
import '../../service/timer.dart';
1110
import '../../service/timezone.dart';

0 commit comments

Comments
 (0)