We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have a problem with ActionSheetManager when usage like this:
ActionSheetManager
import React, { Component } from 'react'; import { Button } from 'react-native'; import ActionSheetManager, { ActionSheet, ActionSheetItem } from 'react-native-action-sheet-component'; export default class App extends Component { render() { const options = { children: [ <ActionSheetItem key='item-1' text="Item 1" value="item1" />, <ActionSheetItem key='item-2' text="Item 2" value="item2" /> ], }; return ( <Button onPress={() => ActionSheetManager.show(options)} title="Open" /> ); } }
The text was updated successfully, but these errors were encountered:
same problem
Sorry, something went wrong.
Any way to fix this issue?
@fang0rnz I changed it to another release and it worked
"react-native-action-sheet-component": "0.0.34"
After downgrade i got
Cannot read property 'removeEventListener' of undefined at ActionSheet.componentWillUnmount
No branches or pull requests
I have a problem with
ActionSheetManager
when usage like this:The text was updated successfully, but these errors were encountered: