bensonarafat / super_tooltip

SuperTooltip It is super flexible and allows you to display ToolTips in the overlay of the screen.
https://pub.dev/packages/super_tooltip
MIT License
142 stars 96 forks source link

Flutter Web Release Version Doesnt show asset image in tooltip #122

Open Jesse-Abruzzo opened 2 months ago

Jesse-Abruzzo commented 2 months ago

Using flutter web release. The tooltip does not show my asset image. Using debug it shows fine. I tried using edge and chrome and both do not work on release.

This is debug Mode. Works fine: works

This is all i get with the release version. image

Widget ruleInfoButton(){ SuperTooltipController ruleToolTipController = SuperTooltipController(); return OnHoverLarge(builder: (isHovered) { return Tooltip(message:'Show how each rule is calculated',child:SuperTooltip(popupDirection: TooltipDirection.down,barrierColor: Colors.transparent,controller:ruleToolTipController,content: Image.asset('assets/ruleTable.jpg'), child:IconButton(color:isHovered ? Colors.blueAccent:null,icon:const Icon(Icons.info_outline), onPressed: () { ruleToolTipController.showTooltip(); },))); }); }

Jesse-Abruzzo commented 1 month ago

Is this package dead? no support?

bensonarafat commented 1 month ago

@Jesse-Abruzzo Thanks for submitting the issue. I will look into it

Jesse-Abruzzo commented 3 weeks ago

any update on this? still doesnt work in flutter web release mode

Jesse-Abruzzo commented 1 week ago

Anything????

bensonarafat commented 1 week ago

Anything????

So sorry, I have been so busy lately, If you provide a PR on this. That will be great. I'll just preview then merge Thanks for understanding

Jesse-Abruzzo commented 1 week ago

No worries. Not sure what the issue is. Im migrating to a different package.