flutter_speed_dial icon indicating copy to clipboard operation
flutter_speed_dial copied to clipboard

Widgets under the overlay are focusable

Open pourqavam opened this issue 2 years ago • 0 comments

Hi If we use the overlay (renderOverlay: true), the underlying widgets are still focusable for example by pressing Tab on desktop platform.

sdfbug2

The

FocusScope.of(context).canRequestFocus = false; // true
FocusScope.of(context).descendantsAreFocusable = false; // true

in the _SpeedDialState.toggleOverlay method can help but I'm not sure if it's the best and bug-free way.

pourqavam avatar Jun 11 '22 14:06 pourqavam