Basic widgets 가장 근본적인 위젯 Text, Image, Container // 텍스트를 보여줄 때 Text 위젯을 사용 Text( '텍스트 위젯', style: TextStyle( fontSize: 35, // 폰트 크기 fontWeight: FontWeight.bold, // 폰트 두께 color: Colors.amber, // 폰트 색상 color: Colors.amber.withOpacity(0.7), // 폰트 색상 + 투명도 ), ), // Container는 Box 형태의 기본적인 위젯으로 다방면으로 많이 사용됨 Container( width: 200, // 폭 or width: double.infinity height: 200, // 높이 or height: double.infi..