modal_bottom_sheet
modal_bottom_sheet copied to clipboard
[iOS] TabBar content is not tappable if using showCustomModalBottomSheet
Step to reproduce:
return showCustomModalBottomSheet(
containerWidget: (context, animation, child) {
return child;
},
context: context,
backgroundColor: Colors.transparent,
barrierColor: Colors.black.withOpacity(0.6),
builder: (_) {
return [Your screen];
},
settings: RouteSettings(
name: routeName,
arguments: arguments,
),
);
In your screen
Tab(
child: [your content is not tappable],
)
onTap only work if you click outside your content
showModalBottomSheet of Flutter works well
I just found a solution: Remove Scaffold
Same issue but I don't understand about removing the scaffold. Doesn't seem to do anything (nor would you want to?)