Skip to content

Commit bf7db75

Browse files
committed
MVP: 데모 발표 준비
1 parent 829d8e9 commit bf7db75

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
22
package="com.cau.until.until">
33
<application
4-
android:label="until"
4+
android:label="UNTIL"
55
android:name="${applicationName}"
66
android:icon="@mipmap/ic_launcher">
77
<activity

lib/view/screen/SetCheckpointsPage.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,6 @@ class _SetCheckpointsPageState extends State<_SetCheckpointsPage> {
268268
"다음 체크 포인트가 1일 남았습니다.\n어서 확인해보세요!");
269269
}
270270
}
271-
272271
Navigator.push(
273272
context,
274273
MaterialPageRoute(

lib/view/widget/task_checkpoints.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class _CheckPointsState extends State<CheckPoints> {
140140
horizontal: 25,
141141
vertical: 17,
142142
),
143-
height: 100,
143+
height: 120,
144144
decoration: BoxDecoration(
145145
border: Border.all(
146146
color: docs[index]['isFinished']

lib/view/widget/task_item.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class _TaskItemState extends State<TaskItem> {
5353
return Container(
5454
margin: const EdgeInsets.symmetric(horizontal: 10, vertical: 10),
5555
padding: const EdgeInsets.fromLTRB(20, 15, 20, 13),
56-
height: widget.task.imminent ? 180 : 165,
56+
height: widget.task.imminent ? 200 : 180,
5757
decoration: BoxDecoration(
5858
border: Border.all(
5959
color: widget.task.imminent ? sundayColor : Colors.black, width: 1),

0 commit comments

Comments
 (0)