Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

warning issues, bubbles are not showing #8

Open
loveheenavasu opened this issue Jun 17, 2020 · 6 comments
Open

warning issues, bubbles are not showing #8

loveheenavasu opened this issue Jun 17, 2020 · 6 comments

Comments

@loveheenavasu
Copy link

image

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

panhna pushed a commit to panhna/react-native-bubble-select that referenced this issue Jul 8, 2020
Feature/chart implementation

Approved-by: Henry Panhna Seng <[email protected]>
@elinahovakimyan
Copy link

Facing the same issue. Any solution for this?

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

@JordaoViktor
Copy link

JordaoViktor commented Dec 11, 2020

I have the same problem

@jesster2k10
Copy link
Owner

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

@JordaoViktor
Copy link

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

@thechaudharysab
Copy link

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

@judinilson
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants