NIAEFEUP / uni

Mobile app designed to help students of the University of Porto to manage their academic life.
GNU General Public License v3.0
50 stars 18 forks source link

MessageToast blocks all touch input #1210

Open bartekpacia opened 8 months ago

bartekpacia commented 8 months ago

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!');
  },
),