Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

elevated button style flutter

ElevatedButton(
            child: Text('Button'),
            onPressed: () {},
            style: ElevatedButton.styleFrom(
                primary: Colors.purple,
                padding: EdgeInsets.symmetric(horizontal: 50, vertical: 20),
                textStyle: TextStyle(
                fontSize: 30,
                fontWeight: FontWeight.bold)),
),
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #elevated #button #style #flutter
ADD COMMENT
Topic
Name
4+5 =