Answers for "flutter text button size"

1

how to increase button size in fltter

ButtonTheme(
  minWidth: 200.0,
  height: 100.0,
  child: RaisedButton(
    onPressed: () {},
    child: Text("test"),
  ),
);
Posted by: Guest on April-27-2020
1

flutter flat button size

// JZ
SizedBox(
  width: double.infinity, // <-- match_parent
  child: RaisedButton(...)
)
Posted by: Guest on February-17-2021

Browse Popular Code Answers by Language