์๋ ํ์ธ์ Foma ์ ๋๋ค!
์ค๋์ ์ด๋ฏธ์ง์ ํฐํธ ์ ์ฉํ๋ ๋ฒ์ ๋ํด์ ์ ๋ฆฌํด๋ณด๊ฒ ์ต๋๋ค.
(๋น์ฅฌ์ผ ์คํ๋์ค ๊ธฐ์ค์ผ๋ก ์ค๋ช ๋๋ฆด๊ฒ์)
๋ฐ๋ก ์์ํ ๊ฒ์~
1. ์ด๋ฏธ์ง
๋น์ฅฌ์ผ ์คํ๋์ค์ imagesํ์ผ์ ๋ง๋ค์ด์ฃผ์ธ์.
images ์์ ์ด๋ฏธ์ง ํ์ผ์ ๋ฃ์ด์ฃผ์ธ์.
pubspec.yaml ํ์ผ๋ก ์ด๋ํ์ ์
์๋์ ๊ฐ์ด ํ์ผ ๊ฒฝ๋ก์ ์ด๋ฏธ์ง ์ด๋ฆ์ ๋ฃ์ด์ฃผ์ธ์.
assets:
- images/profile.png
AssetImage์ ์ด๋ฏธ์ง ๊ฒฝ๋ก์ ์ด๋ฆ์ ๋ฃ์ด์ฃผ์ธ์.
CircleAvatar(
radius: 50.0,
backgroundImage: AssetImage('images/profile.png'),
),
์ด๋ ๊ฒ ํ๋ฉด ์๋์ ๊ฐ์ด ์ด๋ฏธ์ง๊ฐ ์ ์ฉ๋ฉ๋๋ค.
2. ํฐํธ
๋จผ์ ์๋ ๊ตฌ๊ธ ํฐํธ ์ฌ์ดํธ๋ก ๊ฐ์ ์ํ๋ ํฐํธ๋ฅผ ๋ค์ด๋ฐ์์ฃผ์ธ์!
๊ทธ๋ฌ๋ฉด ๋ค์๊ณผ ๊ฐ์ด ttfํ์ผ์ด ์์๊ฑฐ์์.
๋น์ฅฌ์ผ ์คํ๋์ค๋ก ์ด๋ํด์ ํด๋๋ฅผ fonts๋ก ๋ง๋ค์ด์ค๋๋ค.
๊ทธ๋ฆฌ๊ณค ์ด fonts ํด๋ ์์ ttfํ์ผ์ ๋ฃ์ด์ฃผ์ธ์.
pubspec.yaml ํ์ผ๋ก ์ด๋ํด์ฃผ์ธ์.
์๋์ ๊ฐ์ด assets ๋ฐ์ ๋ค์ด๋ฐ์ ttf์ด๋ฆ๊ณผ ์ฃผ์๋ฅผ ๋ฃ์ด์ฃผ์ธ์.
assets:
- images/profile.png
fonts:
- family: Timmana
fonts:
- asset: fonts/Timmana-Regular.ttf
# ...
์์์ ์ ํด์ค family ์ด๋ฆ์ ์ ์ฉํด์ฃผ์ธ์.
Text(
"Fomagran",
style: TextStyle(
fontFamily: "Timmana",
fontSize: 40,
color: Colors.white,
fontWeight: FontWeight.bold),
),
์๋์ ๊ฐ์ด ํฐํธ๊ฐ ์ ์ฉ๋๋๊ฑธ ๋ณผ ์ ์์ต๋๋ค!
๋๊ธ