Skip to content

Commit

Permalink
chore: updates bunch of outdated
Browse files Browse the repository at this point in the history
  • Loading branch information
s8ngyu committed Nov 6, 2024
1 parent 111930c commit a8ea04f
Show file tree
Hide file tree
Showing 30 changed files with 819 additions and 368 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
{
"colors" : [
{
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0.396",
"green" : "0.298",
"red" : "0.898"
}
},
"idiom" : "universal"
}
],
Expand Down
13 changes: 13 additions & 0 deletions ios/OTL Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"images" : [
{
"idiom" : "universal",
"platform" : "watchos",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
18 changes: 8 additions & 10 deletions ios/OTL Watch App/ContentView.swift
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
//
// ContentView.swift
// OTL Watch App
// otl Watch App
//
// Created by Soongyu Kwon on 10/22/23.
// Created by Soongyu Kwon on 06/11/2024.
//

import SwiftUI

@available(iOS 17.0, *)
struct ContentView: View {
@State private var loginState: Bool = true

var body: some View {
if loginState {
WeeklyTableView(loginState: self.$loginState)
} else {
LoginView()
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}

@available(iOS 17.0, *)
#Preview {
ContentView()
}
Loading

0 comments on commit a8ea04f

Please sign in to comment.