react-native-a11y
Version:
Improvements of a11y for ReactNative, this library improve work with reader and keyboard focus and reader in general.
12 lines (9 loc) • 380 B
text/typescript
/* eslint-disable import/no-unresolved */
import type { HostComponent, ViewProps } from "react-native";
import codegenNativeComponent from "react-native/Libraries/Utilities/codegenNativeComponent";
export interface NativeProps extends ViewProps {
accesibility: string;
}
export default codegenNativeComponent<NativeProps>(
"RCA11yPaneView",
) as HostComponent<NativeProps>;