فهرست منبع

Fallback Plan for LoopStatusView Detent

Mike Plante 6 ماه پیش
والد
کامیت
66d0cb0912
1فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 5 1
      Trio/Sources/Modules/Home/View/Header/LoopStatusView.swift

+ 5 - 1
Trio/Sources/Modules/Home/View/Header/LoopStatusView.swift

@@ -129,7 +129,11 @@ struct LoopStatusView: View {
         .onAppear {
             lastDetermination = state.determinationsFromPersistence.first
         }
-        .presentationDetents([.height(sheetContentHeight)])
+        .presentationDetents([
+            sheetContentHeight > 0
+                ? .height(sheetContentHeight)
+                : .fraction(0.9)
+        ])
         .presentationDragIndicator(.visible)
         .onPreferenceChange(ContentSizeKey.self) { newSize in
             sheetContentHeight = newSize.height