Code:
@override
Widget build(BuildContext context) {
return Theme(
data: ThemeData(textTheme: TextTheme(body1: TextStyle(fontSize: 40))),
child: Text("Hello World!"), // size not changing
);
}
But when I use
data: ThemeData(textTheme: TextTheme(body1: TextStyle(fontSize: 40))),
in my MaterialApp
's theme
then size of the Text
gets changed.
PS: I know I can give Text
a size by using style:
property but I wanna know why my code isn't changing Text
font size.