Answers for "how to increase font of text in flutter"

2

how to change flutter text font

Text(
  "Hello",
  style: TextStyle(fontFamily: 'Raleway'),
)
Posted by: Guest on August-20-2021
0

change font size in flutter

new MaterialButton(
  height: 140.0,
  minWidth: double.infinity,
  color: Theme.of(context).primaryColor,
  textColor: Colors.white,
  child: new Text(
    "material button",
    style: new TextStyle(
      fontSize: 20.0,
      color: Colors.yellow,
    ),
  ),
  onPressed: () => {},
  splashColor: Colors.redAccent,
);
Posted by: Guest on July-20-2021

Code answers related to "how to increase font of text in flutter"

Code answers related to "Dart"

Browse Popular Code Answers by Language