본문 바로가기

App14

[Flutter] Section 4 Section4. Running your App on a Physical Device iphone Requirements An Apple ID An iPhone / iPad Device Xcode USB cable Steps Check the iOS version is compatible with the Xcode version (at least Xcode 10version, iOS 12) Xcode랑 ios는 major version 2이상 차이가 나야함. (Xcode < iOS) Install Homebrew Use homebrew to install ideviceinstaller, iOS-deploy & cocoapods Add Apple ID to Xcode Flutter 프로젝트안에 있는 iOS.. 2020. 5. 17.
[Flutter] Section3 Section3. How to Create Flutter Apps from Scratch YNG & RICH Project Creating a New Flutter Project from Scratch main.dart import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( home: Center( child: Text('Wurrup World!'), ), ), ); } Widget Tree Scaffolding a Material App Scaffold() Implements the basic material design visual layout structure. This class provides APIs for show.. 2020. 5. 15.
[Flutter] Section2 Section2: Installation and Setup for Flutter 1. Install the Flutter SDK Minimum System Requirements Mac OS + 700MB for Flutter Mac OS + 10GB for IDE & simulator Mac OS (at least Mojave) Install https://flutter.dev/docs/get-started/install/macos Click FlutterSDK and download. unzip file flutter_macos_v1.12.13+hotfix.9-stable.zip /Users/User/flutter flutter라는 폴더를 만들고 압축을 푼 flutter 폴더를 이동한다. Update.. 2020. 5. 13.
[Flutter] Section1 The Brewery Study 1. Why Flutter? Dart 언어만 알면 IOS, Android, Web, Desktop 을 구현할 수 있다. A simple and flexible layout System There&#39;s a whole family of devices. Lots of devices. Huge ecosystem of sizes, ratios. Hot reload! As soon as you change something, you hist save, and you see the change in your app. super-fast reload Access to Original Source code IOS 와 Android 소스가 어떻게 동작하는지 직접 접근이 가능하다. 2... 2020. 5. 11.