xros hehe

This commit is contained in:
neon443
2025-09-26 10:53:21 +01:00
parent 1cc9eb7b6f
commit 0b039f2c42
4 changed files with 9 additions and 5 deletions

View File

@@ -1110,12 +1110,12 @@
PRODUCT_BUNDLE_IDENTIFIER = com.neon443.ShhShell;
PRODUCT_NAME = "$(TARGET_NAME)";
REGISTER_APP_GROUPS = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator xros xrsimulator";
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_STRICT_CONCURRENCY = complete;
SWIFT_VERSION = 6.0;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = "1,2,7";
};
name = Debug;
};
@@ -1154,12 +1154,12 @@
PRODUCT_BUNDLE_IDENTIFIER = com.neon443.ShhShell;
PRODUCT_NAME = "$(TARGET_NAME)";
REGISTER_APP_GROUPS = YES;
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator xros xrsimulator";
SUPPORTS_MACCATALYST = NO;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_STRICT_CONCURRENCY = complete;
SWIFT_VERSION = 6.0;
TARGETED_DEVICE_FAMILY = "1,2";
TARGETED_DEVICE_FAMILY = "1,2,7";
};
name = Release;
};

View File

@@ -13,7 +13,7 @@ struct ContentView: View {
@ObservedObject var keyManager: KeyManager
var body: some View {
NavigationStack {
NavigationSplitView {
ZStack {
hostsManager.selectedTheme.background.suiColor.opacity(0.7)
.ignoresSafeArea(.all)
@@ -97,6 +97,8 @@ struct ContentView: View {
}
}
}
} detail: {
Text("Detail?")
}
}
}

View File

@@ -69,6 +69,7 @@ struct FontManagerView: View {
}
}
}
.navigationTitle("Fonts")
.scrollContentBackground(.hidden)
}
}

View File

@@ -78,6 +78,7 @@ struct SnippetManagerView: View {
}
}
}
.navigationTitle("Snippets")
}
}
}