diff --git a/README.md b/README.md
index af3b14b..92dad8e 100644
--- a/README.md
+++ b/README.md
@@ -55,10 +55,10 @@ iPomodoro(爱番茄)
### 应用截图
-![](screenshot/01.png)
-![](screenshot/02.png)
-![](screenshot/03.png)
-![](screenshot/04.png)
-![](screenshot/05.png)
-![](screenshot/06.png)
-![](screenshot/07.png)
+
+
+
+
+
+
+
diff --git a/app/ios/Runner.xcodeproj/project.pbxproj b/app/ios/Runner.xcodeproj/project.pbxproj
index 3eb221a..4d7a1dd 100644
--- a/app/ios/Runner.xcodeproj/project.pbxproj
+++ b/app/ios/Runner.xcodeproj/project.pbxproj
@@ -480,7 +480,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
- MARKETING_VERSION = 1.3.0;
+ MARKETING_VERSION = 1.3.1;
PRODUCT_BUNDLE_IDENTIFIER = com.iHTCboy.iPomodoro;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
@@ -622,7 +622,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
- MARKETING_VERSION = 1.3.0;
+ MARKETING_VERSION = 1.3.1;
PRODUCT_BUNDLE_IDENTIFIER = com.iHTCboy.iPomodoro;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
@@ -656,7 +656,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
- MARKETING_VERSION = 1.3.0;
+ MARKETING_VERSION = 1.3.1;
PRODUCT_BUNDLE_IDENTIFIER = com.iHTCboy.iPomodoro;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
diff --git a/app/lib/ui/page/me_page.dart b/app/lib/ui/page/me_page.dart
index 5671fd0..4ee0b24 100644
--- a/app/lib/ui/page/me_page.dart
+++ b/app/lib/ui/page/me_page.dart
@@ -130,7 +130,7 @@ class MePage extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Icon(_list[index]['icon'], color: _list[index]['icon_color']),
- SizedBox(width: 5),
+ SizedBox(width: 10),
Text(_list[index]['title'],
style: TextStyle(
fontSize: DeviceUtils.get_size(context, 16, 18, 22))),
diff --git a/app/lib/ui/page/pomodoro_settings.dart b/app/lib/ui/page/pomodoro_settings.dart
index 83ed8bb..e055fb9 100644
--- a/app/lib/ui/page/pomodoro_settings.dart
+++ b/app/lib/ui/page/pomodoro_settings.dart
@@ -168,7 +168,7 @@ class _PomodoroSettingsPageState extends State {
Divider(height: 1),
ListTile(
leading: Text(
- '🔔',
+ '📢',
style: TextStyle(
fontSize: DeviceUtils.get_size(context, 25, 30, 35)),
),
diff --git a/app/lib/ui/page/timer_settings.dart b/app/lib/ui/page/timer_settings.dart
index 79eaf6d..cbea7dd 100644
--- a/app/lib/ui/page/timer_settings.dart
+++ b/app/lib/ui/page/timer_settings.dart
@@ -75,7 +75,7 @@ class _TimerSettingsPageState extends State {
Divider(height: 1),
ListTile(
leading: Text(
- '🔔',
+ '📢',
style: TextStyle(
fontSize: DeviceUtils.get_size(context, 25, 30, 35)),
),
diff --git a/app/lib/ui/widget/countdown_edit_picker.dart b/app/lib/ui/widget/countdown_edit_picker.dart
index f1b23c2..3f0840a 100644
--- a/app/lib/ui/widget/countdown_edit_picker.dart
+++ b/app/lib/ui/widget/countdown_edit_picker.dart
@@ -101,7 +101,7 @@ class _CountdownEditPickerState extends State {
// const BorderSide(color: Colors.grey)),
// hintText: 'Tell us about yourself',
// helperText: 'Keep it short, this is just a demo.',
- labelText: '事件名称',
+ labelText: '任务名称',
prefixIcon: const Icon(
Icons.date_range_outlined,
size: 20,
@@ -143,7 +143,7 @@ class _CountdownEditPickerState extends State {
),
disabledBorder: OutlineInputBorder(
borderSide: BorderSide(color: AppColors.isDarkMode(context) ? Colors.white38 : Colors.grey)),
- labelText: '事件时间',
+ labelText: '任务时间',
labelStyle: TextStyle(
color: AppColors.isDarkMode(context) ? Colors.white60 : Colors.black54,
),