Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>
This commit is contained in:
parent
648ef44e4d
commit
ae7ba030a2
@ -16,9 +16,14 @@ struct SelfieCamApp: App {
|
|||||||
|
|
||||||
var body: some Scene {
|
var body: some Scene {
|
||||||
WindowGroup {
|
WindowGroup {
|
||||||
AppLaunchView(config: .selfieCam) {
|
ZStack {
|
||||||
ContentView()
|
Color.Branding.primary
|
||||||
.preferredColorScheme(.dark)
|
.ignoresSafeArea()
|
||||||
|
|
||||||
|
AppLaunchView(config: .selfieCam) {
|
||||||
|
ContentView()
|
||||||
|
.preferredColorScheme(.dark)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -60,6 +60,8 @@ struct ContentView: View {
|
|||||||
.transition(.opacity)
|
.transition(.opacity)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.frame(maxWidth: .infinity, maxHeight: .infinity)
|
||||||
|
.background(Color.Branding.primary.ignoresSafeArea())
|
||||||
// Settings button overlay - only show when NOT in photo review mode
|
// Settings button overlay - only show when NOT in photo review mode
|
||||||
.overlay(alignment: .topTrailing) {
|
.overlay(alignment: .topTrailing) {
|
||||||
if !showPhotoReview {
|
if !showPhotoReview {
|
||||||
|
|||||||
@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"info" : { "author" : "xcode", "version" : 1 },
|
||||||
|
"properties" : { "provides-namespace" : true }
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user