Code Monkey home page Code Monkey logo

utopic_toast's Introduction

utopic_toast

Toast Flutter package.

You are free to correct my English!

Overview

  • In the true sense of Toast, you can call it whenever you need it, without any restrictions.

  • Showing multiple dismissible toasts at the same time with showing and hiding animation.

  • Pure flutter implementation, it is not easy to bring compatibility problems

Preview

ezgif com-resize

Getting started

1. add dependencies into you project pubspec.yaml file

dependencies:
     utopic_toast: ^0.1.3

2. import BotToast lib

import 'package:utopic_toast/utopic_toast.dart';

3. initialization ToastOverlay

// wrap MaterialApp builder's child with ToastOverlay and set your custom params
MaterialApp(
  ...
  builder: (context, child) {
    return ToastOverlay(child: child);
  },
  ...
);

4. use ToastManager

var toastFuture = ToastManager().showToast(
  'YOUR MESSAGE TO USER',
  type: ToastType.error, // set toast type to change presetted theme color 
  action: ToastAction(
    label: 'HAY',
    onPressed: (hideToastFn) {
      print('yay');
      hideToastFn();
    },
  ),
  duration: Duration(seconds: 3),
);
toastFuture.dismiss(); // to hide toast

utopic_toast's People

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.