Steve Gehrman

Results 84 comments of Steve Gehrman

I would like linux support too. I like flatpak over snap, but would rather just have a rewrite in pure dart without all the GPL garbage. 2023 and we are...

same issue. why isn't it simple to convert an svg to an image with a size? Do we have to edit the svg to fix the size?

jovial_svg works well: ``` import 'package:jovial_svg/jovial_svg.dart'; static Future svgToPng({ required String svg, ui.Size? scaleTo, }) async { try { final ScalableImage si = ScalableImage.fromSvgString(svg); await si.prepareImages(); final vpSize = si.viewport;...

I'm trying to ship an app. Does this work on macOS at all? I just signed up. You guys said 'excellent support', frequent updates and that it would take a...

yeah, latest macOS. If you knew it was buggy, you should have filed a dts report long ago, Is this broken for every macOS app or just Flutter apps? ask...

I'm seeing this too. 2.9899999999999998, 24.990000000000002,

I'm on flatpak too. connectivity_plus doesn't work. What is the work around?

For anyone else that needs this: ``` import 'package:xdg_desktop_portal/xdg_desktop_portal.dart'; final XdgDesktopPortalClient portal = XdgDesktopPortalClient(); portal.networkMonitor.status.listen((event) { _hasNetwork = event.available; }); ```