dlcodns / OSP_Prediction

GNU General Public License v2.0
1 stars 2 forks source link

동의 부분 왼쪽으로 옮기고 싶은데 안움직입니다 #41

Closed dlcodns closed 1 year ago

dlcodns commented 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로 옮겨보았는데 먹히지 않습니다.ㅜㅜ

dlcodns commented 1 year ago

해결했습니다