close
How to give Text Style to ElevatedButton?, give text style to elevatedbutton, text style to elevatedbutton, style to elevatedbutton, give Text Style to ElevatedButton

How to give Text Style to ElevatedButton?

Hello guys how are you all? Hope you all are fine. As we know RaisedButton is deprecated and the Elevated button is replacing Raised Button widget with its new features. Here in this tutorial, we are going to learn How to give Text Style to ElevatedButton in Flutter?

How to give Text Style to ElevatedButton?

You can simply assign TextStyle property to ElevatedButton‘s style. ElevatedButton.styleFrom has textStyle property so you can simply use this property. Let’s explore examples.

Example

            ElevatedButton(
              onPressed: () {
                print('Button Pressed');
              },
              child: Text('FlutterCorner.com'),
              style: ElevatedButton.styleFrom(
                textStyle: TextStyle(
                  color: Colors.black,
                  fontSize: 30,
                  fontStyle: FontStyle.normal,
                ),
              ),
            ),

Output

How to Use ElevatedButton Widget Flutter,
ElevatedButton With Icon and Text,
Background color of Elevated Button in Flutter,
ElevatedButton Text Style,
ElevatedButton Shadow and Elevation,
ElevatedButton Border,
ElevatedButton Shape

Faq

  1. How to give Text Style to ElevatedButton?

    You can simply assign TextStyle property to ElevatedButton‘s style. ElevatedButton.styleFrom has textStyle property so you can simply use this property. Let’s explore examples.

  2. Text Style to ElevatedButton

    You can simply assign TextStyle property to ElevatedButton‘s style. ElevatedButton.styleFrom has textStyle property so you can simply use this property. Let’s explore examples.

Summery

So it’s all About this tutorial. Hope this above-all solution helped you a lot. Comment below Your thoughts and your queries. Comment Below on your suggestion.

Check Out Below Article


Posted

in

by

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *