The 'menu content' is a Positioned component, and it center.x was equals parent widget's center.x, so when parent's postion is closer to screen's right side, set Positioned's left = offset.dx will cause a part of menu content is hidden. I already change code to left = 10 on my project and feel better.
The 'menu content' is a
Positioned
component, and it center.x was equals parent widget's center.x, so when parent's postion is closer to screen's right side, setPositioned
's left =offset.dx
will cause a part of menu content is hidden. I already change code toleft = 10
on my project and feel better.