diff options
| author | Fuwn <[email protected]> | 2025-06-23 03:22:09 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-23 03:22:09 -0700 |
| commit | 036424fdb70e59fd16ee4a88f9db3da19d47d3b5 (patch) | |
| tree | 1fb0804cf23ccab7d8117c072ec7d42ae88ddc68 | |
| parent | feat: Development commit (diff) | |
| download | sora-testing-036424fdb70e59fd16ee4a88f9db3da19d47d3b5.tar.xz sora-testing-036424fdb70e59fd16ee4a88f9db3da19d47d3b5.zip | |
feat: Development commit
| -rw-r--r-- | Sora/Views/Post/Grid/PostGridView.swift | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Sora/Views/Post/Grid/PostGridView.swift b/Sora/Views/Post/Grid/PostGridView.swift index ac6aeaa..bfc2b1b 100644 --- a/Sora/Views/Post/Grid/PostGridView.swift +++ b/Sora/Views/Post/Grid/PostGridView.swift @@ -106,7 +106,12 @@ struct PostGridView: View { // swiftlint:disable:this type_body_length } } .animation(.easeInOut, value: manager.historyIndex) - .searchable(text: $manager.searchText, isPresented: $isSearchablePresented, prompt: "Tags") + .searchable( + text: $manager.searchText, + isPresented: $isSearchablePresented, + placement: .navigationBarDrawer(displayMode: .automatic), + prompt: "Tags" + ) .searchSuggestions { if settings.searchSuggestionsMode != .disabled { SearchSuggestionsView( |