ElevatedButton을 사용해보기
오늘의 주제는
htps : // 아피. fぅ r. 에서 v/fぅ는 r/마테리아 l/에ぇゔぁ하고 d부룻-cぁs. HTML
ElevatedButton을 좋은 느낌으로 사용하고 싶다.
htps : // 아피. fぅ r. 로 v/fぅ는 r/마테리아 l/라이세 d부트톤-cぁ s. HTML
원래는 RaisedButton이지만, 지금은 RaisedButton은 obsolete(폐지)로 되어 있고, Flutter1.22.0 이후는 ElevatedButton을 사용해 주세요라는 것입니다.
RaisedButton의 설명에도 있듯이,
FlatButton, RaisedButton, and OutlineButton have been replaced by TextButton, ElevatedButton, and OutlinedButton respectively.
그래서,
FlatButton → Textbutton
Raisedbutton → ElevatedButton
OutlineButton → OutlinedButton
이 된 것 같습니다.padding이거나 fontsize도 바꿀 수 있어, 오리지날의 버튼을 만들 수 있을 것 같네요.
ElevatedButton(
onPressed: () {},
child: Text('いいね'),
style: ElevatedButton.styleFrom(
primary: Color(0xFF005731),
onPrimary: Colors.white,
padding: EdgeInsets.symmetric(
horizontal: 100,
vertical: 5,
),
textStyle: TextStyle(
fontSize: 15.0,
fontWeight: FontWeight.bold,
),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
),
),
생긴 버튼은 이런 느낌입니다.
<참고>
htps //w w. 킨다코로. 코 m / 아 rc c ぇ /
Reference
이 문제에 관하여(ElevatedButton을 사용해보기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/tatessy/items/f2cedd034139a912f7e2텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)