일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- weatherKit
- xcode로 날씨앱 만들기
- 서체관리자
- UIAlertAction
- Timer
- Startign Assignments
- RunningTimer
- 단일 책임원칙
- 한국어 개인정보처리방침
- dispatchsource
- 러닝타이머
- 러닝기록앱
- MKMapViewDelegate
- Xcode
- WeatherManager
- Protocol
- CLLocationManagerDelegate
- SwiftUI Boolean 값
- App Store Connect
- 클로저의 캡슐화
- addannotation
- CoreLocation
- font book
- UICollectionViewFlowLayout
- AnyObject
- Required Reason API
- MKMapItem
- 영문 개인정보처리방침
- swift
- weak var
- Today
- Total
VesselWheel
ContentView(SwiftUI) 본문
//
// ContentView.swift
// ex01
//
// Created by tjoeun on 2023/04/15.
//
// Swift 지원 라이브러리 임포트
import SwiftUI
//View Protocol : 화면이 보이는 요소
struct ContentView: View {
// Environment 속성레퍼 : 환경설정을 읽어오는 어노테이션
@Environment(\.colorScheme) var colorScheme
// some : View Protocol 을 준수하는 모든 View 에 대한 불투명 타입
var body: some View {
VStack {
Text("Hello, SwiftUI!")
// 컨텐츠 기본 내부 여백
.padding(.all, 30.0)
// 배경색
.background(colorScheme == .light ? Color.white : Color.black)
// 글자색
.foregroundColor(colorScheme == .light ? Color.black : Color.white)
}
}
}
// 미리보기 화면 정의
struct ContentView_Previews: PreviewProvider {
static var previews: some View {
Group{
// 기본 모드 뷰
ContentView()
.environment(\.colorScheme, .light)
// 다크 모드 뷰
ContentView()
.environment(\.colorScheme, .dark)
}
}
}
'Xcode Study' 카테고리의 다른 글
V, S, Z stack and divider (0) | 2023.10.16 |
---|---|
문자를 화면에 출력하는 컨트롤 (0) | 2023.10.16 |
Raw String (0) | 2023.10.16 |
Foundation String (1) | 2023.10.16 |
String / Character (0) | 2023.10.16 |