Can I create something similar to Toasts in Flutter? Just a tiny notification window that is not directly in the face of the user and does not lock or fade the view behind i
use this dependency:
toast: ^0.1.3
then import the dependency of toast in the page :
import 'package:toast/toast.dart';
then on onTap() of the widget:
Toast.show("Toast plugin app", context,duration: Toast.LENGTH_SHORT, gravity: Toast.BOTTOM);