We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I used patch-package to patch [email protected] for the project I'm working on.
[email protected]
Here is the diff that solved my problem:
diff --git a/node_modules/react-native-toast-message/lib/src/components/AnimatedContainer.styles.js b/node_modules/react-native-toast-message/lib/src/components/AnimatedContainer.styles.js index 9ab2b7f..0a09e23 100644 --- a/node_modules/react-native-toast-message/lib/src/components/AnimatedContainer.styles.js +++ b/node_modules/react-native-toast-message/lib/src/components/AnimatedContainer.styles.js @@ -11,6 +11,6 @@ export const styles = StyleSheet.create({ top: 0 }, bottom: { - bottom: 0 + bottom: -10 } }); diff --git a/node_modules/react-native-toast-message/lib/src/types/index.d.ts b/node_modules/react-native-toast-message/lib/src/types/index.d.ts index e6e502e..a2f5a2b 100644 --- a/node_modules/react-native-toast-message/lib/src/types/index.d.ts +++ b/node_modules/react-native-toast-message/lib/src/types/index.d.ts @@ -145,6 +145,8 @@ export declare type ToastProps = { * Default value: `4000` */ visibilityTime?: number; + + swipeable?: boolean; /** * When `true`, the visible Toast automatically hides after a certain number of milliseconds, * specified by the `visibilityTime` prop.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I used patch-package to patch
[email protected]
for the project I'm working on.Here is the diff that solved my problem:
The text was updated successfully, but these errors were encountered: