Skip to content

Commit

Permalink
Feat: #9 Create Projects
Browse files Browse the repository at this point in the history
  • Loading branch information
99yuseong committed Mar 2, 2024
1 parent 0cdcc63 commit f91df6a
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"colors" : [
{
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"images" : [
{
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
6 changes: 6 additions & 0 deletions myot-si-ya/myot-si-ya/Assets.xcassets/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
24 changes: 24 additions & 0 deletions myot-si-ya/myot-si-ya/ContentView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
//
// ContentView.swift
// myot-si-ya
//
// Created by 남유성 on 3/2/24.
//

import SwiftUI

struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}

#Preview {
ContentView()
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
17 changes: 17 additions & 0 deletions myot-si-ya/myot-si-ya/myot_si_yaApp.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
//
// myot_si_yaApp.swift
// myot-si-ya
//
// Created by 남유성 on 3/2/24.
//

import SwiftUI

@main
struct myot_si_yaApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}

0 comments on commit f91df6a

Please sign in to comment.