Skip to content

Commit b4241af

Browse files
committed
Refactor home screen source file name
1 parent f89e6fe commit b4241af

4 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/common/strings.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/// App wide UI string constants.
88
library;
99

10-
import '../screens/home.dart';
10+
import '../screens/home_screen.dart';
1111

1212
const String appName = 'Hello World Counters';
1313

lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import 'package:flutter/material.dart';
88

99
import 'common/strings.dart' as strings;
10-
import 'screens/home.dart';
10+
import 'screens/home_screen.dart';
1111

1212
void main() {
1313
runApp(const HelloWorldCountersApp());

lib/screens/settings_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
4343
child: ListView(
4444
children: <Widget>[
4545
SwitchListTile(
46-
activeColor: Colors.black,
46+
activeThumbColor: Colors.black,
4747
value: widget.appSettings.counterTapMode,
4848
title: const Text(strings.counterTapModeTitle),
4949
subtitle: const Text(strings.counterTapModeSubtitle),

0 commit comments

Comments
 (0)