Open alainib opened 4 months ago
Anyone has any suggest of the lib for a bottom sheet modal in React Native?
Anyone has any suggest of the lib for a bottom sheet modal in React Native?
hello @Kayre-Scott-Primon i tried gorhom lib. https://github.com/gorhom/react-native-bottom-sheet
it work smooth but i was never able to compile my code in release mode anymore because of reanimated. tryed like 2 days to solve this but cannot. https://github.com/gorhom/react-native-bottom-sheet/issues/1824
i guess i have to retry now or to get the code of this lib and fix it alone
if you manage to make this with reactnative +0,74 please tell me which version of reanimated and bottom-sheet you used.
Hi @alainib, instresting! I guess i will use react-native-bottom-sheet or i will create by my self. If i will use react-native-bottom-sheet and i get to run code in release mode, i'll tell here. Thanks a lot!
Anyone has any suggest of the lib for a bottom sheet modal in React Native?
hello @Kayre-Scott-Primon i tried gorhom lib. https://github.com/gorhom/react-native-bottom-sheet
it work smooth but i was never able to compile my code in release mode anymore because of reanimated. tryed like 2 days to solve this but cannot. gorhom/react-native-bottom-sheet#1824
i guess i have to retry now or to get the code of this lib and fix it alone
if you manage to make this with reactnative +0,74 please tell me which version of reanimated and bottom-sheet you used.
same for me any update on this ? did u able to fix that ?
Anyone has any suggest of the lib for a bottom sheet modal in React Native?
hello @Kayre-Scott-Primon i tried gorhom lib. https://github.com/gorhom/react-native-bottom-sheet it work smooth but i was never able to compile my code in release mode anymore because of reanimated. tryed like 2 days to solve this but cannot. gorhom/react-native-bottom-sheet#1824 i guess i have to retry now or to get the code of this lib and fix it alone if you manage to make this with reactnative +0,74 please tell me which version of reanimated and bottom-sheet you used.
same for me any update on this ? did u able to fix that ?
i use modalize
in production but some features don't work 100%
never been able to compile with gorhom/react-native-bottom-sheet
( didn't try since 2 months )
Anyone has any suggest of the lib for a bottom sheet modal in React Native?
hello @Kayre-Scott-Primon i tried gorhom lib. https://github.com/gorhom/react-native-bottom-sheet it work smooth but i was never able to compile my code in release mode anymore because of reanimated. tryed like 2 days to solve this but cannot. gorhom/react-native-bottom-sheet#1824 i guess i have to retry now or to get the code of this lib and fix it alone if you manage to make this with reactnative +0,74 please tell me which version of reanimated and bottom-sheet you used.
same for me any update on this ? did u able to fix that ?
i use
modalize
in production but some features don't work 100%never been able to compile with
gorhom/react-native-bottom-sheet
( didn't try since 2 months )
In order to compile react-native-bottom-sheet v5, you need to implement the changes of latest gesture handler and reanimated: https://docs.swmansion.com/react-native-gesture-handler/docs/fundamentals/installation/ https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/getting-started/
import { GestureHandlerRootView } from 'react-native-gesture-handler';
export default function App() {
return (
<GestureHandlerRootView style={{ flex: 1 }}>
{/* content */}
</GestureHandlerRootView>
);
}
Is the problem continues after implementing these changes?
Describe the bug A clear and concise description of what the bug is.
Reproduce
Dependencies: