WIP
@@ -1,13 +1,13 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "logo_2.png",
|
||||
"filename" : "icon.png",
|
||||
"idiom" : "universal",
|
||||
"platform" : "ios",
|
||||
"size" : "1024x1024"
|
||||
},
|
||||
{
|
||||
"filename" : "logo_2 1.png",
|
||||
"filename" : "icon 1.png",
|
||||
"idiom" : "universal",
|
||||
"platform" : "watchos",
|
||||
"size" : "1024x1024"
|
||||
|
||||
BIN
Werkout_ios/Assets.xcassets/AppIcon.appiconset/icon 1.png
Normal file
|
After Width: | Height: | Size: 133 KiB |
BIN
Werkout_ios/Assets.xcassets/AppIcon.appiconset/icon.png
Normal file
|
After Width: | Height: | Size: 133 KiB |
|
Before Width: | Height: | Size: 70 KiB |
|
Before Width: | Height: | Size: 70 KiB |
23
Werkout_ios/Assets.xcassets/launch_icon.imageset/Contents.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"images" : [
|
||||
{
|
||||
"filename" : "icon 2.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"filename" : "icon 1.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"filename" : "icon.png",
|
||||
"idiom" : "universal",
|
||||
"scale" : "3x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"author" : "xcode",
|
||||
"version" : 1
|
||||
}
|
||||
}
|
||||
BIN
Werkout_ios/Assets.xcassets/launch_icon.imageset/icon 1.png
vendored
Normal file
|
After Width: | Height: | Size: 133 KiB |
BIN
Werkout_ios/Assets.xcassets/launch_icon.imageset/icon 2.png
vendored
Normal file
|
After Width: | Height: | Size: 133 KiB |
BIN
Werkout_ios/Assets.xcassets/launch_icon.imageset/icon.png
vendored
Normal file
|
After Width: | Height: | Size: 133 KiB |
@@ -94,12 +94,13 @@ struct AllWorkoutsView: View {
|
||||
let viewModel = WorkoutDetailViewModel(workout: item)
|
||||
WorkoutDetailView(viewModel: viewModel, showAddToCalendar: false)
|
||||
}
|
||||
// .sheet(isPresented: $showLoginView) {
|
||||
// LoginView(completion: {
|
||||
// self.needsUpdating = true
|
||||
// maybeUpdateShit()
|
||||
// })
|
||||
// }
|
||||
.sheet(isPresented: $showLoginView) {
|
||||
LoginView(completion: {
|
||||
self.needsUpdating = true
|
||||
maybeUpdateShit()
|
||||
})
|
||||
.interactiveDismissDisabled()
|
||||
}
|
||||
.onReceive(pub) { (output) in
|
||||
self.needsUpdating = true
|
||||
maybeUpdateShit()
|
||||
|
||||