Xavier H.
Xavier H.
@jeslinjacob1995 can you try v3.0.0-alpha.4 with the `renderCache` parameter and report with more information.
@marcuscorreasmash this library only works reliably with the `canvaskit` web-renderer. As explained here: https://docs.flutter.dev/development/platform-integration/web/renderers, by default the `html` renderer is used on mobile. You have to run/build your app with...
This issue should be fixed with the release v2.0.0
This should be fixed in the latest version `v3.0.0-alpha.2`. Please try it and report any issue.
@HansMuller Unless I'm missing something, `ShowValueIndicator.always` still requires a user interaction. This issue is about showing the label without user interaction.
I was able to always paint the value indicator with a custom thumb shape like this: ```dart class _ThumbShape extends RoundSliderThumbShape { final _indicatorShape = const PaddleSliderValueIndicatorShape(); const _ThumbShape(); @override...
Hello, the shared link has expired. Can you provide a reproducible example?
@summerchill It seems this animation is not working either with Lottie-Android (which this Flutter library is a port). I see this warning: `Lottie doesn't support layer effects. If you are...
You can disambiguate the `Key` class by using something like: ```dart import 'package:flutter/widgets.dart' hide Key; import 'package:flutter/widgets.dart' as flutter; import 'package:puppeteer/puppeteer.dart' hide Key; import 'package:puppeteer/puppeteer.dart' as puppeteer; void main() {...
> but puppeteer code doesnt execute. No browser pops up and no errors show If someone can share a full reproducible example, I can take a look.