-
-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
Currently, Widget1 (from Example) cannot receive gestures when Widget2WithPainter is positioned above it using Positioned.fill, even in areas where Widget2WithPainter is visually transparent. This blocks user interaction with Widget1 unnecessarily.
Describe the solution you'd like
Widget1 should be able to receive gestures in areas where Widget2WithPainter is visually transparent, while maintaining the visual layering of the widgets.
Additional context
Example:
Stack(
children: [
Widget1,
const Positioned.fill(
child: Widget2WithPainter(),
),
],
);PlugFox and smit-ai
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request