react-native-bubble-select
react-native-bubble-select copied to clipboard
warning issues, bubbles are not showing
bubbles are not showing instead this warning is showing on simulator RN - 62.2 Xcode - 13
Facing the same issue. Any solution for this?
"react-native": "0.60.5" "react-native-bubble-select": "^0.6.0"
I have the same problem
@JordaoViktor This issue should be rectified with one of the merged pull requests, what version are you using?
"react-native-bubble-select": "^0.6.0" the last
@jesster2k10 I've also just installed and implemented "react-native-bubble-select": "^0.6.0" but I'm not seeing the bubbles. Test on iOS only. Here is my code snippet:
<SafeAreaView style={{ flex: 1 }}>
<View style={styles.container}>
<Text>Playground</Text>
<BubbleSelect onSelect={(bubble) => {
alert('Selected: ', bubble.id)
}}
onDeselect={(bubble) => {
alert('Selected: ', bubble.id)
}}
width={width}
height={height}>
<Bubble id={"bubble-1"} text={"Bubble One"} color={colors.orange} />
</BubbleSelect>
</View>
</SafeAreaView>
I've also created a swift file for the bridging header and pods as well.
Hello, to overcome this issue, I found a practical way by adding a line of code to RNBubbleSelectNodeViewManager.m in the package.
add the code bellow will solve your issue
+ (BOOL)requiresMainQueueSetup { return NO; }