import 'package:flushbar/flushbar.dart'; import 'package:flutter/material.dart'; mixin FeedbackMixin { void showFeedback(BuildContext context, String message) { Flushbar( message: message, margin: const EdgeInsets.all(8), borderRadius: 8, borderColor: Colors.white30, borderWidth: 0.5, duration: const Duration(seconds: 2), flushbarPosition: FlushbarPosition.TOP, animationDuration: const Duration(milliseconds: 600), ).show(context); } }