Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>

This commit is contained in:
Matt Bruce 2026-01-12 17:23:11 -06:00
parent 648ef44e4d
commit ae7ba030a2
3 changed files with 14 additions and 3 deletions

View File

@ -16,9 +16,14 @@ struct SelfieCamApp: App {
var body: some Scene {
WindowGroup {
AppLaunchView(config: .selfieCam) {
ContentView()
.preferredColorScheme(.dark)
ZStack {
Color.Branding.primary
.ignoresSafeArea()
AppLaunchView(config: .selfieCam) {
ContentView()
.preferredColorScheme(.dark)
}
}
}
}

View File

@ -60,6 +60,8 @@ struct ContentView: View {
.transition(.opacity)
}
}
.frame(maxWidth: .infinity, maxHeight: .infinity)
.background(Color.Branding.primary.ignoresSafeArea())
// Settings button overlay - only show when NOT in photo review mode
.overlay(alignment: .topTrailing) {
if !showPhotoReview {

View File

@ -0,0 +1,4 @@
{
"info" : { "author" : "xcode", "version" : 1 },
"properties" : { "provides-namespace" : true }
}