mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 09:47:37 +00:00
65 lines
1.8 KiB
Dart
65 lines
1.8 KiB
Dart
|
import 'package:another_flushbar/flushbar.dart';
|
||
|
import 'package:another_flushbar/flushbar_route.dart' as flushRoute;
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter_svg/svg.dart';
|
||
|
import 'package:stackwallet/utilities/cfcolors.dart';
|
||
|
import 'package:stackwallet/utilities/constants.dart';
|
||
|
import 'package:stackwallet/utilities/enums/flush_bar_type.dart';
|
||
|
|
||
|
Future<dynamic> showFloatingFlushBar({
|
||
|
required FlushBarType type,
|
||
|
required String message,
|
||
|
String? iconAsset,
|
||
|
required BuildContext context,
|
||
|
Duration? duration = const Duration(milliseconds: 1500),
|
||
|
FlushbarPosition flushbarPosition = FlushbarPosition.TOP,
|
||
|
VoidCallback? onTap,
|
||
|
}) {
|
||
|
Color bg;
|
||
|
Color fg;
|
||
|
switch (type) {
|
||
|
case FlushBarType.success:
|
||
|
fg = CFColors.notificationGreenForeground;
|
||
|
bg = CFColors.notificationGreenBackground;
|
||
|
break;
|
||
|
case FlushBarType.info:
|
||
|
fg = CFColors.notificationBlueForeground;
|
||
|
bg = CFColors.notificationBlueBackground;
|
||
|
break;
|
||
|
case FlushBarType.warning:
|
||
|
fg = CFColors.notificationRedForeground;
|
||
|
bg = CFColors.notificationRedBackground;
|
||
|
break;
|
||
|
}
|
||
|
final bar = Flushbar<dynamic>(
|
||
|
onTap: (_) {
|
||
|
onTap?.call();
|
||
|
},
|
||
|
icon: iconAsset != null
|
||
|
? SvgPicture.asset(
|
||
|
iconAsset,
|
||
|
height: 16,
|
||
|
width: 16,
|
||
|
color: fg,
|
||
|
)
|
||
|
: null,
|
||
|
message: message,
|
||
|
messageColor: fg,
|
||
|
flushbarPosition: flushbarPosition,
|
||
|
backgroundColor: bg,
|
||
|
duration: duration,
|
||
|
flushbarStyle: FlushbarStyle.FLOATING,
|
||
|
borderRadius: BorderRadius.circular(
|
||
|
Constants.size.circularBorderRadius,
|
||
|
),
|
||
|
margin: const EdgeInsets.all(20),
|
||
|
);
|
||
|
|
||
|
final _route = flushRoute.showFlushbar<dynamic>(
|
||
|
context: context,
|
||
|
flushbar: bar,
|
||
|
);
|
||
|
|
||
|
return Navigator.of(context, rootNavigator: true).push(_route);
|
||
|
}
|