flutter

RaisedButton의 사이즈를 지정하고 싶을때

후니의 개발이야기 2020. 5. 26. 11:16

안녕하세요. 
새로운 flutter를 적용해서 개발을 진행하는데 쉽지는 않네요. 

일단 Flutter에서 가장 많이 쓰이는  RaisedButton 에서 보통 사이즈를 지정하는 것이 나와 있지 않아서 찾은 해법입니다.

SizeBox를 적용한 RaisedButton Code 



Referrence : api.flutter.dev/flutter/widgets/SizedBox-class.html

 

SizedBox class - widgets library - Dart API

A box with a specified size. If given a child, this widget forces its child to have a specific width and/or height (assuming values are permitted by this widget's parent). If either the width or height is null, this widget will try to size itself to match

api.flutter.dev

부모개체와 크기를 같이 할때 
SizedBox.expand({Key key, Widget child})

 

크기를 따로 정의해서 사용할때 
SizedBox({Key key, double width, double height, Widget child})Creates a fixed size box. The width and height parameters can be null to indicate that the size of the box should not be constrained in the corresponding dimension.

 

 

'flutter' 카테고리의 다른 글

flutter 에서 사용하는 Doc comments 방식  (0) 2020.09.11
Button에 Border Radius 를 만들고 싶을때  (0) 2020.05.27