Tim Lehmann

Results 41 comments of Tim Lehmann
trafficstars

> ```dart > final notifier = ref.watch(provider.notifier); > > return Button(onTap: notifier.increment); > ``` Wouldn't this also be less desirable than ```dart return Button(onTap: ref.read(provider.notifier).increment); ``` due to the unnecessary...

Oh, so in that case the tear-off points to an outdated function? That's crazy, I thought what I wrote would be equivalent to ```dart return Button(onTap: () => ref.read(provider.notifier).increment()); ```...

> The warning doesn't appear if a referenced variable is coming from an unknown source. There won't be such an issue here. Otherwise you would see the warning already when...

This should be an easy implementation, we might get around to it once we have time. Feel free to open a PR. The sketch model would need a backgroundColor property...

I would understand if you keep it like this (also because it's more consistent with GitHub workflows), but then I feel like we would need to be clear about that...

> I don't think 470 is exactly about this use-case so it's better to use a new issue for that. While it's not specifically about this, it was closed with...

This should be possible easily by iterating through the Lines and points. Currently it's outside of the scope of our team, but feel free to open a PR!

Hey, thanks for your super quick response! We are basically doing this: ``` val datasource = UriDataSource(context, sourcePathUri) datasource.initialize() val transcoder = Transcoder.into(destPath) .addDataSource(TrackType.VIDEO, datasource) .addDataSource(TrackType.AUDIO, BlankAudioDataSource(datasource.durationUs)) ``` Without adding...

Our main goal is the problem you had originally as well, where we can't concat videos with audio tracks together with videos without audio tracks, although we might be missing...

If we try to concatenate video with audio with video without audio, we run into the same problem as you did in #51 It seems like the audioTracks getter doesn’t...