cyberpwnn / dart_snackbar

Simple snackbar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple snackbar

Usage

import 'package:snackbar/snackbar.dart';

// Simple snackbar
snack("Hello World");

// Snack with a button
snackUndo("Deleted XYZ", () {
  // It was NOT undone, proceed with deletion
}, undoText: "Undo",
    duration: const Duration(seconds: 5));

// Clear the current snackbar
clearSnackbar();

About

Simple snackbar

License:GNU General Public License v3.0


Languages

Language:Dart 100.0%