disable split view panel visibility gesture

This commit is contained in:
Satindar Dhillon 2022-03-10 11:27:38 -08:00
parent 0e9d896d91
commit 7ea237316d

View file

@ -53,6 +53,10 @@ public struct PrimaryContentView: View {
.introspectSplitViewController {
$0.preferredSplitBehavior = .tile
$0.preferredPrimaryColumnWidth = 200
if #available(iOS 14.5, *) {
$0.presentsWithGesture = false
$0.displayModeButtonVisibility = .always
}
}
}
#endif