Flutter

버튼 코더 라운드 조정

bamboo7af 2024. 12. 14. 17:31
ElevatedButton(
  onPressed: () {
    // 버튼 클릭 시 실행될 코드
  },
  child: Text('둥근 버튼'),
  style: ElevatedButton.styleFrom(
    shape: RoundedRectangleBorder(
      borderRadius: BorderRadius.circular(20), // 둥글기 조절
    ),
  ),
)