0.0.1 • Published 2 years ago

react-native-accessibility-props v0.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

react-native-accessibility-props

Get cross platform accessibily props for react-native and react-native-web.

Usage

import { Pressable } from "react-native";
import { getAccessibilityStateProps } from "react-native-accessibility-props";

function MyComponent() {
  return (
    <Pressable
      accessibilityRole="radio"
      accessibilityLabel="label"
      {...getAccessibilityStateProps({ checked: true })}
    >
      Example
    </Pressable>
  );
}