// This is the "distance" that the toast has to pass before being dismissed export const TOAST_DISMISS_OFFSET_THRESHOLD = 50; // This is the toast's "acceleration" used to calculate the distance for the dismissed check export const TOAST_DISMISS_VELOCITY_FACTOR = 0.3; // Default time the toast persists on the screen in ms export const TOAST_DEFAULT_DURATION = 4000;