Answers for "ElevatedButton set width of the button flutter to width of the screen"

0

elevated button size flutter

ElevatedButton(
    style: ElevatedButton.styleFrom(
    minimumSize: const Size(200, 50),
    maximumSize: const Size(200, 50),
    ),
onPressed: () {},
child: Text('ElevatedButton')),
Posted by: Guest on September-08-2021
0

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),
     ),
 ),
Posted by: Guest on September-24-2020

Code answers related to "ElevatedButton set width of the button flutter to width of the screen"

Browse Popular Code Answers by Language