malikwang
malikwang
> Any workaround here? I still have this issue with flutter 2.2.3. ```dart MediaQuery( data: MediaQuery.of(context).removePadding(removeBottom: true), child: SafeArea( child: Scrollbar( controller: _controller, isAlwaysShown: true, child: ListView.separated(), ), ), );...
Kind of hack, but works well. The main idea is: add a _Member_ into _GestureArena_. ```dart import 'package:flutter/gestures.dart'; import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; import 'package:flutter/widgets.dart'; void main() => runApp(MyApp()); class MyApp...
> Kind of hack, but works well. The main idea is: add a _Member_ into _GestureArena_. > > ```dart > import 'package:flutter/gestures.dart'; > import 'package:flutter/material.dart'; > import 'package:flutter/rendering.dart'; > import...
> Great widget however I've experienced a problem: > > I have an app-wide generic button utilising expand_tap_area. It works in all situations except this: > > OnTap() calls SetState...
plz paste the code to verify this problem.
_Although there's a lot of space in the bottom direction, the popup goes upward._ **This problem has been verified as bug(maybe position auto calculate error relatived with screen size). if...
I can add this in the future verison, you can use IgnorePointer to fix this.
> below is my code i want to show menu when focus is in textfield widget and hide when leave textfield widget. butt when i do this multiple time. sometime...
> Yes u can send demo to my email [email protected]