fix error in android header, setting as null when is android instead ios

This commit is contained in:
gustavo-em 2022-02-14 11:23:12 -03:00
parent 80270cdb82
commit 75849fbfca

View File

@ -18,6 +18,8 @@ const styles = StyleSheet.create({
const Header = ({children, title}): Node => {
return Platform.select({
ios: <SystemBroadcastPicker style={styles.broacastPicker} />,
android: null
});
};