flutterbutton

    [Flutter] 2.0 Button(플러터 버튼) 사용방법

    안녕하세요 오늘은 Flutter Button 사용방법에 대해 포스팅 해보도록 하겠습니다. flutter 버전이 2.0으로 올라가면서 버튼이 변경되었습니다. 기존 버튼들인 FlatButton, OutlineButton, RaisedButton -> TextButton, OutlinedButton, ElevatedButton 으로 변경되었습니다. 현재 2.0 이상의 버전에서 기존 버튼들을 사용할 시엔 이런식으로 deprecated가 된 것을 확인할 수 있으며 대체할 버튼을 사용하라는 친절한 메세지도 보여줍니다. FlatButton -> TextButton OutlineButton -> OutlinedButton RaisedButton -> ElevatedButton 으로 변경되었습니다. 바뀐 후 버튼의 사용..