@@ -15,41 +15,51 @@ struct TweaksView: View {
1515 NavigationStack {
1616 List {
1717 Section ( header: HeaderLabel ( text: " SpringBoard " , icon: " house " ) ) {
18- NavigationLink ( " DarkBoard " , destination: DarkBoardView ( ) )
19- NavigationLink ( " Liquid Glass " , destination: LGView ( ) )
2018 NavigationLink ( " RemoteCall Customizer " , destination: RemoteView ( mgr: mgr) )
2119 . disabled ( !mgr. rcready)
20+ NavigationLink ( " DarkBoard " , destination: DarkBoardView ( ) )
21+ . disabled ( true )
22+ NavigationLink ( " Liquid Glass " , destination: LiquidGlassView ( ) )
23+ . disabled ( !mgr. vfsready)
24+ }
25+
26+ Section ( header: HeaderLabel ( text: " Lock Screen " , icon: " lock " ) ) {
27+ NavigationLink ( " Passcode Theme " , destination: PasscodeView ( mgr: mgr) )
28+ . disabled ( !mgr. sbxready)
29+ }
30+
31+ Section ( header: HeaderLabel ( text: " Apps " , icon: " app " ) ) {
32+ NavigationLink ( " Card Overwrite " , destination: CardView ( ) )
33+ . disabled ( !mgr. vfsready)
34+ NavigationLink ( " 3 App Bypass " , destination: AppsView ( mgr: mgr) )
35+ . disabled ( !mgr. sbxready)
36+ NavigationLink ( " Unblacklist " , destination: WhitelistView ( ) )
37+ . disabled ( !mgr. sbxready)
38+ NavigationLink ( " JIT Enabler " , destination: JitView ( ) )
39+ . disabled ( !mgr. sbxready)
2240 }
2341
2442 Section ( header: HeaderLabel ( text: " User Interface " , icon: " eye " ) ) {
2543 NavigationLink ( " dirtyZero " , destination: ZeroView ( mgr: mgr) )
2644 . disabled ( !mgr. vfsready)
2745 NavigationLink ( " MobileGestalt " , destination: GestaltView ( ) )
2846 . disabled ( !mgr. sbxready)
29- NavigationLink ( " Card Overwrite " , destination: CardView ( ) )
3047 NavigationLink ( " Font Overwrite " , destination: FontPicker ( mgr: mgr) )
3148 . disabled ( !mgr. vfsready)
32- NavigationLink ( " Passcode Theme " , destination: PasscodeView ( mgr: mgr) )
33- . disabled ( !mgr. sbxready)
3449 NavigationLink ( " SystemColor Patcher " , destination: SystemColor ( mgr: mgr) )
3550 . disabled ( !mgr. sbxready || !mgr. vfsready)
3651 }
3752
3853 Section ( header: HeaderLabel ( text: " System " , icon: " gear " ) ) {
39- NavigationLink ( " 3 App Bypass " , destination: AppsView ( mgr: mgr) )
40- . disabled ( !mgr. sbxready)
41- NavigationLink ( " Unblacklist " , destination: WhitelistView ( ) )
42- . disabled ( !mgr. sbxready)
4354 NavigationLink ( " VarClean " , destination: VarCleanView ( ) )
4455 . disabled ( !mgr. sbxready)
45- NavigationLink ( " JIT Enabler " , destination: JitView ( ) )
46- . disabled ( !mgr. sbxready)
4756 NavigationLink ( " Custom Overwrite " , destination: CustomView ( mgr: mgr) )
4857 . disabled ( !mgr. vfsready)
4958 }
5059
5160 NavigationLink ( " Extra Tools " , destination: ToolsView ( ) )
5261 }
62+ . disabled ( !mgr. dsready)
5363 . navigationTitle ( " Tweaks " )
5464 . toolbar {
5565 if selectedlogsdisplaymode == . toolbar {
0 commit comments