UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

14 lines 345 B
import _noop from "lodash/noop"; import { createContext } from 'react'; const FieldContext = createContext({ isFocused: false, hasValue: false, isValid: true, failingValidatorIndex: undefined, disabled: false, readonly: false, validateField: _noop, checkValidity: () => true, isMandatory: false }); export default FieldContext;