Skip to content

Commit 7335292

Browse files
authored
feat: 리워드 화면 사용 가능 온도 설명 텍스트 추가 및 카메라 화면 설명 텍스트 굵기 변경 (#196)
1 parent c216d00 commit 7335292

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

frontend/ongi/lib/screens/add_record_screen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ class AddRecordScreenState extends State<AddRecordScreen>
306306
style: TextStyle(
307307
fontSize: 12,
308308
color: Colors.black45,
309-
fontWeight: FontWeight.w400,
309+
fontWeight: FontWeight.w500,
310310
),
311311
),
312312
),

frontend/ongi/lib/screens/reward_screen.dart

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ class _RewardScreenState extends State<RewardScreen> {
210210
depth: -5, // +면 돌출, -면 들어간 효과
211211
intensity: 0.3,
212212
shadowDarkColorEmboss: Colors.black54
213-
.withOpacity(0.9),
213+
.withValues(alpha: 0.9),
214214
shape: NeumorphicShape.concave,
215215
boxShape: NeumorphicBoxShape.roundRect(
216216
BorderRadius.circular(20),
@@ -222,7 +222,7 @@ class _RewardScreenState extends State<RewardScreen> {
222222
),
223223
child: SizedBox(
224224
width: double.infinity,
225-
height: 90,
225+
height: 100,
226226
child: Row(
227227
crossAxisAlignment:
228228
CrossAxisAlignment.start,
@@ -282,6 +282,20 @@ class _RewardScreenState extends State<RewardScreen> {
282282
),
283283
),
284284
),
285+
Align(
286+
alignment:
287+
Alignment.bottomRight,
288+
child: Text(
289+
'기본 온도 36.5℃를 제외한 실제 사용 가능 온도예요!',
290+
style: const TextStyle(
291+
fontSize: 9,
292+
fontWeight:
293+
FontWeight.w400,
294+
height: 1.0,
295+
color: Colors.black54,
296+
),
297+
),
298+
),
285299
],
286300
),
287301
),

0 commit comments

Comments
 (0)