플러터 공부한거 정리 노트
// 고정 StatelessWidget // 화면 Scaffold( // 앱바 appBar: AppBar( title: const Text('aa'), // 제목 centerTitle: true, //가운데 정렬 backgroundColor: Colors.white, // 색상 elevation: 0, //그림자 제어 ), // 넓이 높이 SizedBox(width: 10) // 텍스트 Text('b',style: TextStyle(fontSize: 30, fontWeight: FontWeight.bold),), // 여백 Padding( padding: EdgeInsets.all(8.0),) // 레이아웃 Row() 세로 Column() 가로 // 화면 정렬 crossAxisAlignment: Cros..
2022. 5. 2.