uni icon indicating copy to clipboard operation
uni copied to clipboard

MessageToast blocks all touch input

Open bartekpacia opened this issue 1 year ago • 0 comments

When MessageToast is shown all input (drags, taps, back button) is ignored.

infotoast_blocking.webm

To show the pointer:

adb shell settings put system pointer_location 1

Repro

I added a button under this line:

TextButton(
  child: const Text('ToastMessage.info()'),
  onPressed: () {
    ToastMessage.info(context, 'hi there!');
  },
),

bartekpacia avatar Mar 21 '24 16:03 bartekpacia