Answers for "elevated button style in theme in flutter"

3

ElevatedButton flutter style

ElevatedButton(
  style: ElevatedButton.styleFrom(
  onPrimary: Colors.black87,
  primary: Colors.grey[300],
  minimumSize: Size(88, 36),
  padding: EdgeInsets.symmetric(horizontal: 16),
  shape: ElevatedButton.styleFrom(
    primary: ThemeColors.darkBg,
    shape: RoundedRectangleBorder(borderRadius: BorderRadius.circular(10.0), side: BorderSide(color: Colors.black)),
    ),
  onPressed: () { },
  child: Text('Looks like a RaisedButton'),
)
Posted by: Guest on June-08-2021
0

elevated Button Theme background color in flutter

style: ElevatedButton.styleFrom(
              primary: Colors.purple,
            ),
Posted by: Guest on April-06-2021

Code answers related to "elevated button style in theme in flutter"

Browse Popular Code Answers by Language