UNPKG

@applicaster/zapp-react-native-ui-components

Version:

Applicaster Zapp React Native ui components for the Quick Brick App

11 lines (8 loc) 386 B
import { requireNativeComponent, View } from "react-native"; import { isAppleTV } from "@applicaster/zapp-react-native-ui-components/Helpers/Platform"; export const FocusableGroupNative = isAppleTV() ? requireNativeComponent("FocusableGroupViewModule", null) : View; export const FocusableItemNative = isAppleTV() ? requireNativeComponent("FocusableViewModule", null) : View;