2021년 10월 9일 토요일

플러터의 바뀐 버튼


플러터가 업그레이드 되면서
기존에 사용하던 버튼 테마와 위젯들이
각각의 테마를 가지는 버튼 위젯으로 바꼈다.

ButtonTheme, FlatButton    > TextButtonTheme, TextButton
ButtonTheme, RaisedButton  > ElevatedButtonTheme, ElevatedButton
ButtonTheme, OutlineButton > OutlinedButtonTheme, OutlinedButton

기존의 코드들을 그대로 쓸 수 있지만, 권장하진 않는다.

출처 : https://flutter.dev/docs/release/breaking-changes/buttons

댓글 없음:

댓글 쓰기

플러터 단축키

1. 위젯 감싸기/벗기기 비주얼 스튜디오 :   Cmd + . 안드로이드 스튜디오 : Alt + Enter 2. 코드 정렬 비주얼 스튜디오 : Ctrl + S 안드로이드 스튜디오 : Ctlr + Alt + L 3. StatelessWidget ->...