smart-toast.js 231 B

123456789
  1. export function adaptiveToast(title, iconWhenShort = 'error', centered = true) {
  2. if (!title) return
  3. const useIcon = title.length <= 4 ? iconWhenShort : 'none'
  4. uni.showToast({
  5. title,
  6. icon: useIcon,
  7. position: centered
  8. })
  9. }