Answers for "flutter change size of elevated button"

0

how to change the height of elevated button fluttter

ElevatedButton(
   style: ElevatedButton.styleFrom(
     minimumSize: Size(150, 48), // takes postional arguments as width and height
   ),
 ),
              
              OR
   // Wrap the ElevatedButton inside a SizedBox or a Container and set your with and height
Posted by: Guest on July-19-2021

Code answers related to "flutter change size of elevated button"

Browse Popular Code Answers by Language