@applicaster/zapp-react-native-ui-components
Version:
Applicaster Zapp React Native ui components for the Quick Brick App
13 lines (10 loc) • 436 B
text/typescript
import { requireNativeComponent, View } from "react-native";
import { isAppleTV } from "@applicaster/zapp-react-native-ui-components/Helpers/Platform";
// @TODO define the types
export const FocusableGroupNative = isAppleTV()
? requireNativeComponent<any>("FocusableGroupViewModule")
: View;
// @TODO define the types
export const FocusableItemNative = isAppleTV()
? requireNativeComponent<any>("FocusableViewModule")
: View;