react-native-ui-lib
Version:
[](https://stand-with-ukraine.pp.ua)
14 lines • 345 B
JavaScript
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;