DART

    [Flutter_study] Section 1~4 review

    ★유데미 플러터 강좌의 Section 1~4 정리★ - 주요 레이아웃 구성 : Scaffold, AppBar, ,Color, Text, Center, Image, NetworkImage, AssetsImage 등 - 이미지 파일 추가 방법(인터넷 경로/assets 폴더) - Icon 변환(android/ios) [main.dart 소스코드] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; //the main function is the starting point for all our Flutter apps. ..