We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb7872 commit c92fe5dCopy full SHA for c92fe5d
src/Container.tsx
@@ -15,7 +15,7 @@ import PropTypes from "prop-types";
15
const iOS = Platform.OS === "ios";
16
17
export interface DialogContainerProps {
18
- blurComponentIOS: ReactNode;
+ blurComponentIOS?: ReactNode;
19
buttonSeparatorStyle?: ViewStyle;
20
contentStyle?: ViewStyle;
21
footerStyle?: ViewStyle;
src/Input.tsx
@@ -17,7 +17,7 @@ import PropTypes from "prop-types";
export interface DialogInputProps extends TextInputProps {
label?: string;
wrapperStyle?: ViewStyle;
- textInputRef: LegacyRef<TextInput>;
+ textInputRef?: LegacyRef<TextInput>;
}
22
23
const DialogInput: React.FC<DialogInputProps> = (props) => {
0 commit comments