Flutter Toast

Pub Build Status Coverage Status GitHub FOSSA Status

A simple yet powerful Flutter plugin for showing Toast at Android and iOS.

Features:

  • Native Toast
  • Pure Flutter Toaster

Installation

Add to pubspec.yaml:

dependencies:
  eyro_toast: any

Import Library

import 'package:eyro_toast/eyro_toast.dart';

Native Toast

// showing short Toast
await EyroToast.showToast(
  text: 'This is short toast',
  duration: ToastDuration.short,
);

// showing long Toast
await EyroToast.showToast(
  text: 'This is long toast',
  duration: ToastDuration.long,
);

Pure Flutter Toaster

await showToaster(
  text: 'This is a centered Toaster',
  duration: ToastDuration.short,
  gravity: ToastGravity.bottom,
  borderRadius: const BorderRadius.all(Radius.circular(16)),
  backgroundColor: const Color(0xAA000000),
  fontColor: const Color(0xFFFFFFFF),
  textAlign: TextAlign.center,
  margin: const EdgeInsets.symmetric(horizontal: 16),
  padding: const EdgeInsets.symmetric(
    horizontal: 16,
    vertical: 12,
  ),
  border: null,
);

Author

Eyro Toast plugin is developed by Eyro Labs. You can contact us at admin@cubeacon.com.

Libraries

eyro_toast
Flutter package for Toast for Android, iOS and Web platform.
eyro_toast_web