I have a Bottom Tab with a Play Button in the middle, I would like to fire a function instead of load a registered screen.
Right now I have:
children: [
{
component: {
id: 'player'
name: 'navigation.PlayerScreen',
passProps: {
text: 'Player',
}
}
}
],
I´m searching if there´s something like that without the need of a screen:
children: [
{
component: {
id: 'player'
onPress: () => playMusic()
}
}
],
Versions:
- "react-native": "0.59.3",
- "react-native-navigation": "2.16.0"
Thanks in advance.