[Flutter] Flutter 버튼 가이드 : 플러터 2.0 버튼 변환과 스타일 지정
·
Flutter
Flutter 2.0에서 버튼 위젯이 새롭게 변화했습니다. 기존의 FlatButton, RaisedButton, OutlineButton은 더 이상 권장되지 않으며, 대신 TextButton, ElevatedButton, OutlinedButton으로 변경되었습니다. 새로운 버튼은 더 직관적인 스타일링과 Material Design 요소를 반영하고 있습니다.1. 주요 변화버튼 클래스와 테마가 다음과 같이 변경되었습니다:FlatButton → TextButtonRaisedButton → ElevatedButtonOutlineButton → OutlinedButton테마도 TextButtonTheme, ElevatedButtonTheme, OutlinedButtonTheme로 각각 변화되었습니다.스타일 지정..