[j Flutter] 실선긋기 (draw line)
플러터에서 실선을 생성하는 방법은 많지만 3가지만 포스팅할 예정이다. 1. Container로 실선만들기 Container( height:1.0, width:500.0, color:Colors.white,) 2. Divider로 실선만들기 - thickness : 실선 굵기 Container(width: 500, child: Divider(color: Colors.red, thickness: 2.0)) 3. 세로 실선 만들기 VerticalDivider( color: Color.fromARGB(255, 211, 211, 211), thickness: 1.0) Container( width: 1, height: 15, color: AppColors.border, ),
[j Flutter] Switch 스위치 / Check Box 체크박스 구현하기
checkbox와 switch를 구현해보자. 1. CheckBox Padding( padding: EdgeInsets.fromLTRB(0, 10, 0, 10), child: Text('체크박스',style: TextStyle(fontSize: 30),)), Container( height:1.0, width:500.0, color:Colors.white,), Row( mainAxisAlignment: MainAxisAlignment.center, children: [ Text('빨간색 '), Transform.scale( scale: 1.5, child: Checkbox( activeColor: Colors.white, checkColor: Colors.red, value: _checkBoxValue1,..