theme: ThemeData(
// 기본 적용 가능한 폰트 설정 가능
fontFamily: ' ',
textTheme: TextTheme(
headline1: TextStyle(
),
bodyText1: TextStyle(
),
)
)
Widget build(BuildContext context) {
// 밑에 context는 build 안에 context이다
// theme.of(context)는 가장 가까운 위젯의 theme인스턴스를 가져올 수 있다
final theme = Theme.of(context);
final textTheme = theme.textTheme;