-
-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flutter Web Release Version Doesnt show asset image in tooltip #122
Comments
Is this package dead? no support? |
@Jesse-Abruzzo |
any update on this? still doesnt work in flutter web release mode |
Anything???? |
So sorry, I have been so busy lately, |
No worries. Not sure what the issue is. Im migrating to a different package. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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(); },))); }); }
The text was updated successfully, but these errors were encountered: