Open Jesse-Abruzzo opened 2 months ago
Is this package dead? no support?
@Jesse-Abruzzo Thanks for submitting the issue. I will look into it
any update on this? still doesnt work in flutter web release mode
Anything????
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
No worries. Not sure what the issue is. Im migrating to a different package.
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:
This is all i get with the release version.
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(); },))); }); }