Closed dlcodns closed 1 year ago
https://github.com/dlcodns/OSP_Prediction/blob/feature_flutter_LCU/3_join.dart
Column( children: [ Align( alignment: Alignment.center, child: Row( children: [ const CheckboxExample(), const Text('이용약관 필수 동의', style: TextStyle( fontSize: 14 ), ), SizedBox( height: 19.0, child: TextButton( child: const Text('자세히 보기', style: TextStyle( decoration: TextDecoration.underline, fontSize: 14, color: Color(0xff404040) ), ), onPressed: (){ }, ), ), ], ), ), Row( children: [ const CheckboxExample(), const Text('개인정보 처리방침 필수 동의', style: TextStyle( fontSize: 14 ), ), SizedBox( height: 19.0, child: TextButton( child: const Text('자세히 보기', style: TextStyle( decoration: TextDecoration.underline, fontSize: 14, color: Color(0xff404040) ), ), onPressed: (){ }, ), ), ], ), Row( children: [ const CheckboxExample(), const Text('위치정보 이용 약관 필수 동의', style: TextStyle( fontSize: 14 ), ), SizedBox( height: 19.0, child: TextButton( child: const Text('자세히 보기', style: TextStyle( decoration: TextDecoration.underline, fontSize: 14, color: Color(0xff404040) ), ), onPressed: (){ }, ), ), ], ), Row( children: [ const CheckboxExample(), const Text('마케팅 정보 수신 선택 동의', style: TextStyle( fontSize: 14 ), ), SizedBox( height: 19.0, child: TextButton( child: const Text('자세히 보기', style: TextStyle( decoration: TextDecoration.underline, fontSize: 14, color: Color(0xff404040) ), ), onPressed: (){ }, ), ), ], ), Row( children: const [ CheckboxExample(), Text('만 14세 이상임에 필수 동의', style: TextStyle( fontSize: 14 ), ), ], ), ], ),
첫번째 동의란을 align center로 옮겨보았는데 먹히지 않습니다.ㅜㅜ
해결했습니다
https://github.com/dlcodns/OSP_Prediction/blob/feature_flutter_LCU/3_join.dart
첫번째 동의란을 align center로 옮겨보았는데 먹히지 않습니다.ㅜㅜ