diff --git a/src/utils/tools.ts b/src/utils/tools.ts index 4d90d8e..193e113 100644 --- a/src/utils/tools.ts +++ b/src/utils/tools.ts @@ -120,7 +120,7 @@ export const toast = (message: string, duration: 'long' | 'short' = 'short', pos switch (position) { case 'top': _position = ToastAndroid.TOP - offset = 80 + offset = 120 break case 'center': _position = ToastAndroid.CENTER @@ -129,7 +129,7 @@ export const toast = (message: string, duration: 'long' | 'short' = 'short', pos case 'bottom': default: _position = ToastAndroid.BOTTOM - offset = 80 + offset = 120 break } ToastAndroid.showWithGravityAndOffset(message, _duration, _position, 0, offset)