본문 바로가기

# 02/Flutter

[Flutter] Text font 오류?

반응형
MaterialApp(
      title: 'Custom Fonts',
      // Set Raleway as the default app font.
      theme: ThemeData(fontFamily: 'Raleway'),
      home: const MyHomePage(),
    )

처음에 보통 theme 설정해주면 자동으로 다른 페이지에서도 텍스트 폰트 적용되는데..

Scaffold 썻을때만 적용되는 듯!

 

 

예를 들어, 

토스트 메시지를 띄울 때 Stack 으로 쌓고 Scaffold(기본 페이지 유아이)와, 토스트 메시지는 Scaffold 로 감싸주지 않은 경우 토스트 메시지의 텍스트에는 폰트가 적용 안되는 경우를 보았다...

 

style: TextStyle(
       	fontFamily: 'Noto Sans KR',
       	color: Colors.white,
       	fontSize: ScreenUtil().setSp(14),
       	fontWeight: FontWeight.w500,
       	decoration: TextDecoration.none),

 

 

이런 경우 font 다시 적용해줘야 되는 듯!

 

반응형