@@ -43,7 +43,8 @@ class TermsAndConditionPage extends ConsumerWidget {
4343 Navigator .push (
4444 context,
4545 MaterialPageRoute (
46- builder: (context) => const WomanVerificationPage ()),
46+ builder: (context) => const WomanVerificationPage (),
47+ ),
4748 );
4849 },
4950 ),
@@ -72,19 +73,21 @@ class TermsAndConditionPage extends ConsumerWidget {
7273 Text (
7374 "모두 동의합니다." ,
7475 style: AppTypography .subtitle2.copyWith (
75- color: viewmodel.checkState[0 ]
76- ? AppColors .grey900
77- : AppColors .grey500,
76+ color:
77+ viewmodel.checkState[0 ]
78+ ? AppColors .grey900
79+ : AppColors .grey500,
7880 ),
7981 ),
8082 IconButton (
8183 onPressed: () => notifier.toggleAll (),
8284 iconSize: 36 ,
8385 icon: Icon (
8486 Icons .check_circle_outline,
85- color: viewmodel.checkState[0 ]
86- ? AppColors .grey900
87- : AppColors .grey500,
87+ color:
88+ viewmodel.checkState[0 ]
89+ ? AppColors .grey900
90+ : AppColors .grey500,
8891 ),
8992 ),
9093 ],
@@ -95,17 +98,16 @@ class TermsAndConditionPage extends ConsumerWidget {
9598 mainAxisAlignment: MainAxisAlignment .spaceBetween,
9699 children: [
97100 TextButton (
98- style: TextButton .styleFrom (
99- padding: EdgeInsets .zero,
100- ),
101+ style: TextButton .styleFrom (padding: EdgeInsets .zero),
101102 onPressed: () {},
102103 child: Text (
103104 getLabel (i),
104105 style: AppTypography .body2.copyWith (
105106 decoration: TextDecoration .underline,
106- color: viewmodel.checkState[i]
107- ? AppColors .grey900
108- : AppColors .grey500,
107+ color:
108+ viewmodel.checkState[i]
109+ ? AppColors .grey900
110+ : AppColors .grey500,
109111 ),
110112 ),
111113 ),
@@ -114,9 +116,10 @@ class TermsAndConditionPage extends ConsumerWidget {
114116 iconSize: 24 ,
115117 icon: Icon (
116118 Icons .check,
117- color: viewmodel.checkState[i]
118- ? AppColors .grey900
119- : AppColors .grey500,
119+ color:
120+ viewmodel.checkState[i]
121+ ? AppColors .grey900
122+ : AppColors .grey500,
120123 ),
121124 ),
122125 ],
0 commit comments