Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

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,
);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #font #size #flutter
ADD COMMENT
Topic
Name
6+3 =