File tree Expand file tree Collapse file tree 1 file changed +24
-24
lines changed
frontend/ongi/lib/screens/health Expand file tree Collapse file tree 1 file changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -1505,31 +1505,31 @@ class _HealthStatusInputScreenState extends State<HealthStatusInputScreen> {
15051505 Positioned (
15061506 right: 16 ,
15071507 bottom: 16 ,
1508- child: Container (
1509- width: 50 ,
1510- height: 50 ,
1511- decoration: BoxDecoration (
1512- shape: BoxShape .circle,
1513- color: isFrontView
1514- ? Colors .white
1515- : AppColors .ongiOrange,
1516- border: Border .all (
1517- color: AppColors .ongiOrange,
1518- width: 2 ,
1519- ),
1520- boxShadow: [
1521- BoxShadow (
1522- color: Colors .black.withValues (
1523- alpha: 0.1 ,
1524- ),
1525-
1526- blurRadius: 4 ,
1527- offset: const Offset (0 , 2 ),
1508+ child: GestureDetector (
1509+ onTap: toggleView,
1510+ child: Container (
1511+ width: 50 ,
1512+ height: 50 ,
1513+ decoration: BoxDecoration (
1514+ shape: BoxShape .circle,
1515+ color: isFrontView
1516+ ? Colors .white
1517+ : AppColors .ongiOrange,
1518+ border: Border .all (
1519+ color: AppColors .ongiOrange,
1520+ width: 2 ,
15281521 ),
1529- ],
1530- ),
1531- child: GestureDetector (
1532- onTap: toggleView,
1522+ boxShadow: [
1523+ BoxShadow (
1524+ color: Colors .black.withValues (
1525+ alpha: 0.1 ,
1526+ ),
1527+
1528+ blurRadius: 4 ,
1529+ offset: const Offset (0 , 2 ),
1530+ ),
1531+ ],
1532+ ),
15331533 child: Center (
15341534 child: Text (
15351535 isFrontView ? '앞' : '뒤' ,
You can’t perform that action at this time.
0 commit comments