Results 45 comments of Iiro Krankka

Awesome, thanks a bunch! I don't really have an ETA for this, but I'll do it "soonish".

This is currently disabled on purpose since I didn't have time to look into doing a good landscape layout. For this to land, it would be nice to: - [ ...

Thanks for reporting! I knew about this one, but thought of waiting out until someone brings it up.

Hi! I was able to reproduce the same error when cloning the project. A temporary workaround I came up with is the following: 1. `cd ` 2. `flutter create .`...

Thanks for the question! I'll admit that I was a bit on the fence if `defaultValue` should be nullable or not. If something new that I overlooked arises, I'm open...

@lucaslcode you're right in that `0` is a _"number with a value zero"_, not _"no value set yet"_. Same would go for other primitives. I built this library to make...

FYI: I'm looking to rethink this during the upcoming weeks, now that NNBD is becoming a thing.

I've certainly hit a couple of annoyances with this behavior, although I was able to work around all of them, but I agree that in the end, the developers should...

Great idea! I'm working on it. I'll likely have support for listening to 3 preferences. If you need more than that, you should maybe rethink your code. That said, I'll...

@TheBestMoshe & @degloff this is the current plan. Let's say we have these three preferences: ```dart PreferenceBuilder3( preferences.getString('name'), preferences.getInt('age'), preferences.getBool('isAwesome'), builder: (BuildContext context, String name, int age, bool isAwesome) {...