GFFloatingWidget constructor

const GFFloatingWidget({
  1. Key? key,
  2. Widget? child,
  3. double? horizontalPosition,
  4. double? verticalPosition,
  5. Color? blurnessColor,
  6. bool showBlurness = false,
  7. Widget? body,
})

Creates a Floating body can be used to display the quick messages, warning and erros. Inside floating widget GFToast can be used as body. See GFToast

Implementation

const GFFloatingWidget(
    {Key? key,
    this.child,
    this.horizontalPosition,
    this.verticalPosition,
    this.blurnessColor,
    this.showBlurness = false,
    this.body})
    : super(key: key);