How to set the width of a RaisedButton in Flutter?

后端 未结 20 1879
傲寒
傲寒 2021-01-30 06:01

I have seen that I can\'t set the width of a RaisedButton in Flutter. If I have well understood, I should put the RaisedButton into a SizedBox

20条回答
  •  醉梦人生
    2021-01-30 06:29

    This worked for me. The Container provides the height and FractionallySizedBox provides the width for the RaisedButton.

    Container(
      height: 50.0, //Provides height for the RaisedButton
      child: FractionallySizedBox(
        widthFactor: 0.7, ////Provides 70% width for the RaisedButton
        child: RaisedButton(
          onPressed: () {},
        ),
      ),
    ),
    

提交回复
热议问题