@momo-kits/native-kits 0.164.1-beta.7-debug → 0.164.1-beta.8-debug
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compose/build.gradle.kts +1 -1
- package/compose/compose.podspec +1 -1
- package/compose/src/iosMain/kotlin/vn/momo/kits/navigation/HostBackGesture.ios.kt +9 -2
- package/gradle.properties +1 -1
- package/ios/native-kits.podspec +1 -1
- package/ios-demo/MoMoUIKitsDemo.podspec +1 -1
- package/package.json +1 -1
package/compose/build.gradle.kts
CHANGED
package/compose/compose.podspec
CHANGED
|
@@ -51,9 +51,16 @@ object HostBackGestureBridge {
|
|
|
51
51
|
gestureInput?.backProgressed(progress.coerceIn(0f, 1f))
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
/**
|
|
54
|
+
/**
|
|
55
|
+
* Released past the commit threshold: the screen pops.
|
|
56
|
+
*
|
|
57
|
+
* Falls back to the attached input when no drag was started, so a host that commits without
|
|
58
|
+
* ever seeking still gets a back. Dispatching a bare completion is the documented
|
|
59
|
+
* non-predictive path — the same shape as a back button press — and dropping it here is what
|
|
60
|
+
* silently stranded the mini-app root, where the host never seeks.
|
|
61
|
+
*/
|
|
55
62
|
fun completed() = onMain {
|
|
56
|
-
gestureInput?.backCompleted()
|
|
63
|
+
(gestureInput ?: attachedInputs.lastOrNull())?.backCompleted()
|
|
57
64
|
gestureInput = null
|
|
58
65
|
}
|
|
59
66
|
|
package/gradle.properties
CHANGED
package/ios/native-kits.podspec
CHANGED