Arokip / flutter_diagram_editor

Fllutter diagram editor library
MIT License
116 stars 38 forks source link

Labels are hidden when off-screen #38

Closed Albert-Jan closed 1 year ago

Albert-Jan commented 1 year ago

Labels get hidden when you start a drag where they are not on the screen. Is it possible to show them at all time? Even when they are off-screen. I understand this is a performance optimization, although once labels are more prominently styled, it really starts to look buggy to the user.

Please have a look at the video below:

https://user-images.githubusercontent.com/11318861/214670826-45645546-807d-458c-b9c1-01d9872d56b8.mov

Albert-Jan commented 1 year ago

Fixed by modifying the Stack in '/widget/link.dart' to have the stack with no clipping.

Stack(clipBehavior: Clip.none)