17 lines
No EOL
499 B
Dart
17 lines
No EOL
499 B
Dart
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);
|
|
}
|
|
} |