Kaynağa Gözat

remove popup by swipe

Ivan Valkou 5 yıl önce
ebeveyn
işleme
1c2e299ae5

+ 8 - 0
FreeAPS/Sources/Modules/Home/View/HomeRootView.swift

@@ -155,6 +155,14 @@ extension Home {
                 .onTapGesture {
                     isStatusPopupPresented = false
                 }
+                .gesture(
+                    DragGesture(minimumDistance: 10, coordinateSpace: .local)
+                        .onEnded { value in
+                            if value.translation.height < 0 {
+                                isStatusPopupPresented = false
+                            }
+                        }
+                )
             }
         }
     }