Marcel Garus
Marcel Garus
Having multiple nested scrolling views is kind of hard to do currently. It is easily possible though by going one abstraction layer deeper – that is, using `Sliver`s. Currently, you'd...
Not really… The package uses the `PullToRefresh` widget from the [pull_to_refresh](https://pub.dev/packages/pull_to_refresh) package and I'm not an expert in how exactly it works… Maybe you could do some further research in...
Does this make sense? Within the MIR, this is totally fine, but at the borders to other IRs this becomes really messy and ugly.
Fuzzing works fine locally. Seems like this is an issue of nightly cargo: https://github.com/rust-lang/cargo/issues/8557
Fair enough, I'll just disable the fuzzing for now
You can always use a custom generator to generate more inputs, like this: ```dart Glados( any.combine4(any.int, any.int, any.int, (a, b, c, d) => [a, b, c, d]) ).test(description, (input) {...
Most desktop computers have a USB port, so repeatedly plugging a USB stick in and pulling it out again sounds like an intuitive mechanism to me. But there might be...
Oh, I see. So, if all the text fits, the widget should just show the text? If it does not, it should display the marquee? That's a good question, I'm...
I'll try to support this functionality natively in the next major version of this package.
Okay, I'll try to look into it in the next days, shouldn't be much work 👍🏻