react-native-bubble-select icon indicating copy to clipboard operation
react-native-bubble-select copied to clipboard

warning issues, bubbles are not showing

Open loveheenavasu opened this issue 4 years ago • 6 comments

image

bubbles are not showing instead this warning is showing on simulator RN - 62.2 Xcode - 13

loveheenavasu avatar Jun 17 '20 10:06 loveheenavasu

Facing the same issue. Any solution for this?

"react-native": "0.60.5" "react-native-bubble-select": "^0.6.0"

elinahovakimyan avatar Jul 30 '20 14:07 elinahovakimyan

I have the same problem

JordaoViktor avatar Dec 11 '20 13:12 JordaoViktor

@JordaoViktor This issue should be rectified with one of the merged pull requests, what version are you using?

jesster2k10 avatar Dec 17 '20 16:12 jesster2k10

"react-native-bubble-select": "^0.6.0" the last

JordaoViktor avatar Dec 17 '20 16:12 JordaoViktor

@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.

thechaudharysab avatar Apr 21 '21 04:04 thechaudharysab

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; }

judinilson avatar Nov 08 '22 16:11 judinilson