반응형
작성일 : 2021.09.20
플루터 개발을 공부하다보니
매테리얼 디자인 중에 FlatButton, RaisedButton, OutlineButton가 있는데 이들이 Deprecated 되었다.
그럼 무엇을 써야할까?
FlatButton →TextButton
RaisedButton →ElevatedButton
OutlineButton →OutlinedButton
이렇게 바꺼쓰면 될것같다.
그리고 색상은
style: TextButton.styleFrom(
primary: Colors.teal,
),
이렇게 스타일로 주면 된다.
자세한 부분은 아래서 참조
https://www.woolha.com/tutorials/flutter-using-textbutton-widget-examples
반응형
'2023년 이전 > flutter' 카테고리의 다른 글
Flutter - as Prefix (1) | 2021.12.13 |
---|---|
Flutter 관련 도규먼트들 (0) | 2021.12.13 |
Flutter 실행 해보기 (0) | 2021.12.06 |
Flutter 설치 (0) | 2021.12.05 |
플러터의 핵심개념 (0) | 2021.12.05 |