@sfenton/react-native-readium-with-cfi
Version:
A react-native wrapper for https://readium.org/ with CFI support
16 lines (13 loc) • 410 B
text/typescript
import { UIManager } from 'react-native';
import { COMPONENT_NAME } from './COMPONENT_NAME';
export const createFragment = (viewId: number | null) => {
if (viewId !== null) {
UIManager.dispatchViewManagerCommand(
viewId,
// we are calling the 'create' command
// @ts-ignore
UIManager.getViewManagerConfig(COMPONENT_NAME).Commands.create.toString(),
[viewId]
);
}
};