有没有办法让屏幕上有捕捉点(演示文稿:“modal”)在React原生导航中的作用?

3duebb1j  于 2022-11-25  发布在  React
关注(0)|答案(1)|浏览(110)

我希望有一个可滚动(带捕捉点)的本地导航堆栈屏幕(演示文稿:"modal")。我不需要任何类似"react-native-modal"库或来自react native库的官方Modal。我需要一个具有模态行为的实际屏幕,我可以通过演示来实现:"模态"属性,但我希望它有捕捉点。完美的例子将是iOS健身应用程序。
So this is the screen when you initially press upload button. As you can see it takes maybe 40% - 50% height of the screen
If you scroll down height expands and it acts as ordinary screen with presentation: "modal"
And lastly if you scroll back up it springs back to its original position and it acts as a modal(no gap at the top of the screen as in second image)这是我正在寻找的行为。如果可能的话,我希望在android上也能得到类似的行为。
我试图用"react-native-modal"和"react-native"组件中的官方Modal来实现这种行为,但我希望它能作为一个单独的屏幕。我还希望它能让人感觉像"原生的",但有了这些东西,感觉就不是这样了。

相关问题