blob: 6841c1c6f5a8f2e3735546f83384f65b9b723ddd [file] [log] [blame]
>>>
class UnitConverterApp extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
textTheme: Theme.of(context).textTheme.apply(
bodyColor: Colors.black,
displayColor: Colors.grey[600],
),
),
);
}
}
<<<
class UnitConverterApp extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
textTheme: Theme.of(context).textTheme.apply(
bodyColor: Colors.black,
displayColor: Colors.grey[600],
),
),
);
}
}