react-native-bottom-sheet icon indicating copy to clipboard operation
react-native-bottom-sheet copied to clipboard

error on load with RNW

Open lobor opened this issue 1 year ago • 3 comments

image

I will added later a repoductible repo

lobor avatar Apr 15 '24 16:04 lobor

Okay @lobor I'd really need a repro to be able to approach this correctly, waiting on that

stanleyugwu avatar Apr 23 '24 10:04 stanleyugwu

Same issue is happening here :/

expo: 50.0.13 react native: 0.73.5

Example:

export default function HistoryFilters() {
  const ref = useRef<BottomSheetMethods>(null);
  
  return (
    <View>
      <BottomSheet
          ref={ref}
          closeOnDragDown={true}
          animationType='slide'
          backdropMaskColor='#000000'
        >
          <Text>
            The smart 😎, tiny 📦, and flexible 🎗 bottom sheet your app craves 🚀
          </Text>
        </BottomSheet>
    </View>
  );
}
export default function HistoryPage() {
  return (
    <View>
      <Text>=)</Text>
      <HistoryFilters />
    </View>
  );
}

leetcarone avatar Apr 23 '24 14:04 leetcarone

hi, how to config for react js webpack? i have equal error

javier545dev avatar Jul 11 '24 21:07 javier545dev