mirror of
https://github.com/cranci1/Sora.git
synced 2026-04-20 16:12:50 +00:00
test x2
This commit is contained in:
parent
1b7dd3d3bb
commit
c9ffadc530
6 changed files with 6 additions and 1 deletions
|
|
@ -251,8 +251,8 @@
|
|||
132417B22D131A0600B4F2D2 /* LibraryViews */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
132417B32D131A0600B4F2D2 /* LibraryManager.swift */,
|
||||
132417B42D131A0600B4F2D2 /* LibraryView.swift */,
|
||||
132417B32D131A0600B4F2D2 /* LibraryManager.swift */,
|
||||
);
|
||||
path = LibraryViews;
|
||||
sourceTree = "<group>";
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -151,6 +151,7 @@ struct AnimeInfoView: View {
|
|||
.padding()
|
||||
.navigationBarTitleDisplayMode(.inline)
|
||||
.navigationBarTitle(anime.name)
|
||||
.navigationViewStyle(StackNavigationViewStyle())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ struct LibraryView: View {
|
|||
.padding()
|
||||
}
|
||||
}
|
||||
.navigationViewStyle(StackNavigationViewStyle())
|
||||
.navigationTitle("Library")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,6 +66,7 @@ struct SearchResultsView: View {
|
|||
}
|
||||
.padding()
|
||||
}
|
||||
.navigationViewStyle(StackNavigationViewStyle())
|
||||
.navigationTitle("Results")
|
||||
.toolbar {
|
||||
filterMenu
|
||||
|
|
@ -107,6 +108,7 @@ struct SearchResultsView: View {
|
|||
}
|
||||
}
|
||||
}
|
||||
.navigationViewStyle(StackNavigationViewStyle())
|
||||
.navigationTitle("Results")
|
||||
.toolbar {
|
||||
filterMenu
|
||||
|
|
|
|||
|
|
@ -118,6 +118,7 @@ struct SettingsView: View {
|
|||
}
|
||||
}
|
||||
}
|
||||
.navigationViewStyle(StackNavigationViewStyle())
|
||||
.navigationTitle("Settings")
|
||||
.sheet(isPresented: $isDocumentPickerPresented) {
|
||||
DocumentPicker(
|
||||
|
|
|
|||
Loading…
Reference in a new issue