๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
TIL

20230411 TIL

by ๊น€๋นต๊ทธ 2023. 4. 12.

๐Ÿ˜ŽToday ์š”์•ฝ

1. flutter image ์ ์šฉํ•˜๋ ค๋ฉด ํด๋”์•ˆ์— ์ด๋ฏธ์ง€๋ฅผ ๋„ฃ์€ ํ›„ > pubspec.yaml์— assets์„ ์—ฐ๋™์‹œ์ผœ์ค€ ํ›„ flutter pub get ํ„ฐ๋ฏธ๋„์— ์จ์ค€ํ›„ ์—ฐ๋™ํ•˜๋ฉด ๋œ๋‹ค. flutter์—์„œ background size cover ๊ฐ™์€ ๊ฝ‰ ์ฐฌ ์ด๋ฏธ์ง€๋ฅผ ์‚ฌ์šฉํ•˜๊ณ  ์‹ถ๋‹ค๋ฉด fit์„ ์‚ฌ์šฉ ํ•˜๋ฉด ๋œ๋‹ค.!
2. flutter margin, padding, border-radius ๋“ฑ ๊ฐ„๋‹จํ•œ style ์ ์šฉ์— ๋Œ€ํ•ด ์•Œ์•„๋ดค๋‹ค
3. flutter์—๋Š” line-height๊ฐ€ ์—†๊ณ  ๊ทธ๋ƒฅ ํ…์ŠคํŠธ ์Šคํƒ€์ผ height์„ ์‚ฌ์šฉํ•˜์—ฌ ์ค„ ์‚ฌ์ด ๊ฐ„๊ฒฉ์„ ๋งž์ถ˜๋‹ค

๐Ÿ‘1. ์ž˜ํ•œ ์ 

[โœ…] flutter ๋ณต์Šต 3.0 ~ 3.9

[โœ…] flutter ์ฑŒ๋ฆฐ์ง€ ์ œ์ถœ 

 

โœŒ๏ธ2. ๊ฐœ์„  ์ 

๐Ÿ‘‹3. ๋ฐฐ์šด ์ 

flutter image

 

Flutter Image ์ด๋ฏธ์ง€ ์ ์šฉํ•˜๋Š” ๋ฒ•

1. assets > images ํด๋”๋ฅผ ์ƒ์„ฑ ํ›„ ์›ํ•˜๋Š” ์ด๋ฏธ์ง€ ํŒŒ์ผ์„ ๋„ฃ์–ด์ค€๋‹ค 2.pubspec.yaml ํŒŒ์ผ ์•ˆ์œผ๋กœ ๋“ค์–ด๊ฐ„๋‹ค 3. ์•„๋ž˜๋กœ ๋‚ด๋ ค๊ฐ€๋‹ค ๋ณด๋ฉด #assets:~~~ ์ด๋ž€ ํ…์ŠคํŠธ๊ฐ€ ์žˆ๋Š”๋ฐ ์œ„์™€๊ฐ™์ด ํ•ด๋‹น ๊ฐ€์ ธ์˜จ ์œ„์น˜ + ์ด๋ฏธ์ง€๋ช…

252-archive.tistory.com

 

flutter margin 

- EdgeInsets.

Container(
    margin: const EdgeInsets.symmetric(vertical: 3, horizontal: 7),
),

flutter Border Radius

 Container(
      margin: const EdgeInsets.symmetric(horizontal: 8),
      decoration: BoxDecoration(
          borderRadius: BorderRadius.circular(10)),
),

flutter Text ์ค„๋ฐ”๊ฟˆ 

- \n์‚ฌ์šฉ

 const Text(
        "DESIGN\nMEETING",
        style: TextStyle(
            fontSize: 60,
            letterSpacing: -1,
            fontWeight: FontWeight.w500),
  ),

flutter Text line-height 

- text style > height ์‚ฌ์šฉ

const Text(
  "DAILY\nPROJECT",
  style: TextStyle(
      height: 0.8,
      color: Colors.black,
      fontSize: 60,
      letterSpacing: -1,
      fontWeight: FontWeight.w500),
),

'TIL' ์นดํ…Œ๊ณ ๋ฆฌ์˜ ๋‹ค๋ฅธ ๊ธ€

20230413 TIL  (0) 2023.04.14
20230412 TIL  (0) 2023.04.12
20230410 TIL  (0) 2023.04.10
20230407 TIL  (0) 2023.04.07
20230406 TIL  (0) 2023.04.06