11
Demo/iOS/Assets.xcassets/AccentColor.colorset/Contents.json
Normal file
11
Demo/iOS/Assets.xcassets/AccentColor.colorset/Contents.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"colors" : [
|
||||
{
|
||||
"idiom" : "universal"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
13
Demo/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json
Normal file
13
Demo/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "universal",
|
||||
"platform" : "ios",
|
||||
"size" : "1024x1024"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
6
Demo/iOS/Assets.xcassets/Contents.json
Normal file
6
Demo/iOS/Assets.xcassets/Contents.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
24
Demo/iOS/ContentView.swift
Normal file
24
Demo/iOS/ContentView.swift
Normal file
@ -0,0 +1,24 @@
|
||||
//
|
||||
// ContentView.swift
|
||||
// iOS
|
||||
//
|
||||
// Created by kintan on 1/30/24.
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
|
||||
struct ContentView: View {
|
||||
var body: some View {
|
||||
VStack {
|
||||
Image(systemName: "globe")
|
||||
.imageScale(.large)
|
||||
.foregroundStyle(.tint)
|
||||
Text("Hello, world!")
|
||||
}
|
||||
.padding()
|
||||
}
|
||||
}
|
||||
|
||||
#Preview {
|
||||
ContentView()
|
||||
}
|
||||
@ -0,0 +1,6 @@
|
||||
{
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
19
Demo/iOS/iOSApp.swift
Normal file
19
Demo/iOS/iOSApp.swift
Normal file
@ -0,0 +1,19 @@
|
||||
//
|
||||
// iOSApp.swift
|
||||
// iOS
|
||||
//
|
||||
// Created by kintan on 1/30/24.
|
||||
//
|
||||
|
||||
import FFmpegKit
|
||||
import libmpv
|
||||
import SwiftUI
|
||||
|
||||
@main
|
||||
struct iOSApp: App {
|
||||
var body: some Scene {
|
||||
WindowGroup {
|
||||
ContentView()
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user