showFloating function

dynamic showFloating(
  1. BuildContext context
)

Implementation

showFloating(BuildContext context) {
  if (!show) {
    Overlay.of(context)?.insert(entry);
    show = true;
  }
}