how to increase button size in fltter
ButtonTheme(
minWidth: 200.0,
height: 100.0,
child: RaisedButton(
onPressed: () {},
child: Text("test"),
),
);
how to increase button size in fltter
ButtonTheme(
minWidth: 200.0,
height: 100.0,
child: RaisedButton(
onPressed: () {},
child: Text("test"),
),
);
raisedbutton full width flutter
FractionallySizedBox(
widthFactor: 1, // means 100%, you can change this to 0.8 (80%)
child: RaisedButton.icon(
onPressed: () {
print(comment);
},
label: Text('Edit Comment', style: TextStyle(color: Colors.white)),
icon: Icon(Icons.check, color: Colors.white),
),
),
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us