theme

김원교·2023년 3월 10일
0
  • theme:, ThemeData(), textTheme: TextTheme(headline1:TextStyle( ) )을 이용해 main에 글꼴과 폰트를 정해준다
  • 중앙화에 용이

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;

profile
지드래건 남들이 머라건 이병건

0개의 댓글