[Flutter] 버튼 종류 골라 쓰기(ElevatedButton/TextButton/OutlinedButton/IconButton)
버튼의 종류는 아래와 같습니다. (ElevatedButton/TextButton/OutlinedButton/IconButton) style 적용방법이라던지 버튼 색상변경은 아래에서 확인해주세요 ElevatedButton( onPressed: () {}, child: Text('위로 볼록한 버튼'), ), TextButton( onPressed: () {}, child: Text('글씨 버튼'), ), OutlinedButton( onPressed: () {}, child: Text('테두리 글씨 버튼'), ), //이미지 버튼 IconButton( onPressed: () {}, icon: Icon(Icons.add), ), 적용해보면 아래와 같습니다. 아래는 사용한 코드입니다. 실제 페이지에 적용하면서..