FloatingActionBubble icon indicating copy to clipboard operation
FloatingActionBubble copied to clipboard

Bug: FloatingActionBubble prohibits clicking below self layer to the full width of the screen

Open Oubi256 opened this issue 1 year ago • 0 comments

The FloatingActionBubble widget placed in Stack when opened overlaps the content behind it full width.

Widget build(BuildContext context) {
    return Stack(
      children: [
        MyContentPageWidget(...),
        Align(
          alignment: Alignment.bottomRight,
          child: FloatingActionBubble(...)
        ),
      ],
    );
  }

https://github.com/Darshan0/FloatingActionBubble/assets/98897017/997abc20-6c41-44a3-a25f-45e2250c901d

Oubi256 avatar Jul 24 '23 15:07 Oubi256