bluejoyq
bluejoyq
I solved it by adding values of onChangeEnd and onChangeStart and lowering the thumbnail quality. ```dart TrimEditor( circlePaintColor: Theme.of(context).colorScheme.tertiary, borderPaintColor: Theme.of(context).colorScheme.tertiary, durationTextStyle: Theme.of(context).textTheme.bodyText2!, trimmer: trimmer, maxVideoLength: const Duration(minutes: 2), viewerWidth:...
@balvinderz Sadly, version 1.0.0 doesn't work either. After opening the web server with `flutter run -d web-server --web-render canvaskit` in the code above, the same log is still output when...
Thank you for leaving comments even though you must be busy :)  `isInitialized` is changed but other values remain the same as the default values. Like the screenshot above.
@balvinderg It works perfectly well. Thank you for your efforts.
Hi. Thanks for the library, always nice. I have one minor question: why the code is remained for `createState` that being nullable in `createStore`, which was previously left for `context`?...
> Same issue here. Windows 11 with following WSL issue > > > WSL version: 2.0.9.0 > > Kernel version: 5.15.133.1-1 > > WSLg version: 1.0.59 > > MSRDC version:...
A workaround is to create a transparent RadarDataSet with a maximum value. ```dart RadarDataSet( entryRadius: 4, fillColor: color.primary.withOpacity(0.5), borderColor: color.primary, dataEntries: [ RadarEntry(value: aiScoreState.accuracy), RadarEntry(value: aiScoreState.angle), RadarEntry(value: aiScoreState.balance), RadarEntry(value: aiScoreState.inertia),...