snackbar static method

SnackbarController snackbar(
  1. String title,
  2. String message, {
  3. Color? colorText,
  4. Duration? duration = const Duration(seconds: 3),
  5. bool instantInit = true,
  6. SnackPosition? snackPosition = SnackPosition.top,
  7. Widget? titleText,
  8. Widget? messageText,
  9. Widget? icon,
  10. bool? shouldIconPulse,
  11. double? maxWidth,
  12. EdgeInsets? margin,
  13. EdgeInsets? padding,
  14. double? borderRadius,
  15. Color? borderColor,
  16. double? borderWidth,
  17. Color? backgroundColor,
  18. Color? leftBarIndicatorColor,
  19. List<BoxShadow>? boxShadows,
  20. Gradient? backgroundGradient,
  21. Widget? mainButton,
  22. OnTap? onTap,
  23. OnHover? onHover,
  24. bool? isDismissible,
  25. bool? showProgressIndicator,
  26. AnimationController? progressIndicatorController,
  27. Color? progressIndicatorBackgroundColor,
  28. Animation<Color>? progressIndicatorValueColor,
  29. SnackStyle? snackStyle,
  30. Curve? forwardAnimationCurve,
  31. Curve? reverseAnimationCurve,
  32. Duration? animationDuration,
  33. double? barBlur,
  34. double? overlayBlur,
  35. SnackbarStatusCallback? snackbarStatus,
  36. Color? overlayColor,
  37. Form? userInputForm,
})

Show a snackbar

Implementation

static SnackbarController snackbar(
  String title,
  String message, {
  Color? colorText,
  Duration? duration = const Duration(seconds: 3),
  bool instantInit = true,
  SnackPosition? snackPosition = SnackPosition.top,
  Widget? titleText,
  Widget? messageText,
  Widget? icon,
  bool? shouldIconPulse,
  double? maxWidth,
  EdgeInsets? margin,
  EdgeInsets? padding,
  double? borderRadius,
  Color? borderColor,
  double? borderWidth,
  Color? backgroundColor,
  Color? leftBarIndicatorColor,
  List<BoxShadow>? boxShadows,
  Gradient? backgroundGradient,
  Widget? mainButton,
  OnTap? onTap,
  OnHover? onHover,
  bool? isDismissible,
  bool? showProgressIndicator,
  AnimationController? progressIndicatorController,
  Color? progressIndicatorBackgroundColor,
  Animation<Color>? progressIndicatorValueColor,
  SnackStyle? snackStyle,
  Curve? forwardAnimationCurve,
  Curve? reverseAnimationCurve,
  Duration? animationDuration,
  double? barBlur,
  double? overlayBlur,
  SnackbarStatusCallback? snackbarStatus,
  Color? overlayColor,
  Form? userInputForm,
}) {
  final flowSnackBar = FlowsSnackBar(
    snackbarStatus: snackbarStatus,
    titleText: titleText ??
        Text(
          title,
          style: TextStyle(
            color: colorText ?? Colors.white,
            fontWeight: FontWeight.w800,
            fontSize: 16,
          ),
        ),
    messageText: messageText ??
        Text(
          message,
          style: TextStyle(
            color: colorText ?? Colors.white,
            fontWeight: FontWeight.w300,
            fontSize: 14,
          ),
        ),
    snackPosition: snackPosition ?? SnackPosition.top,
    borderRadius: borderRadius ?? 15,
    margin: margin ?? const EdgeInsets.symmetric(horizontal: 10),
    duration: duration,
    barBlur: barBlur ?? 7.0,
    backgroundColor: backgroundColor ?? const Color(0xFF303030),
    icon: icon,
    shouldIconPulse: shouldIconPulse ?? true,
    maxWidth: maxWidth,
    padding: padding ?? const EdgeInsets.all(16),
    borderColor: borderColor,
    borderWidth: borderWidth,
    leftBarIndicatorColor: leftBarIndicatorColor,
    boxShadows: boxShadows,
    backgroundGradient: backgroundGradient,
    mainButton: mainButton,
    onTap: onTap,
    onHover: onHover,
    isDismissible: isDismissible ?? true,
    showProgressIndicator: showProgressIndicator ?? false,
    progressIndicatorController: progressIndicatorController,
    progressIndicatorBackgroundColor: progressIndicatorBackgroundColor,
    progressIndicatorValueColor: progressIndicatorValueColor,
    snackStyle: snackStyle ?? SnackStyle.floating,
    forwardAnimationCurve: forwardAnimationCurve ?? Curves.easeOutCirc,
    reverseAnimationCurve: reverseAnimationCurve ?? Curves.easeOutCirc,
    animationDuration: animationDuration ?? const Duration(seconds: 1),
    overlayBlur: overlayBlur ?? 0.0,
    overlayColor: overlayColor ?? Colors.transparent,
    userInputForm: userInputForm,
  );

  final controller = SnackbarController(flowSnackBar);

  // Delay showing snackbar until next frame to ensure Overlay is available
  WidgetsBinding.instance.endOfFrame.then((_) {
    controller.show();
  });

  return controller;
}