tasty_toast 0.1.0 copy "tasty_toast: ^0.1.0" to clipboard
tasty_toast: ^0.1.0 copied to clipboard

outdated

Simple toasts which fade in and out.

tasty_toast #

A simple package which shows a toast at the top, center or bottom (default) of the screen. I've created this package because I was looking for something similar, but didn't like how other packages handled my (simple) usecase.

You can easily customize the toast by providing a TextStyle for the text or BoxDecoration for the background.

Getting Started #

Import tasty toast:

import 'package:tasty_toast/tasty_toast.dart';

Call showToast with the context variable:

showToast(
  context,
  "Some message!",
);

This will use the defaults, which is a dark toast, white letters and shows at the bottomCenter.

Optionally customize the toast:

showToast(
  context,
  "Fully customized",

  // Optional parameters:
  alignment: Alignment.centerLeft,
  textStyle: customTextStyle,
  background: customBoxDecoration,
  duration: Duration(seconds: 5),
  padding: EdgeInsets.all(25.0),
  offsetAnimationStart: Offset(-0.1, -0.1),  // Defines the starting position of the fly-in animation
);

Screenshots #

Android image 1 Android image 2 iOS image 1 iOS image 2