Craig Edwards
Craig Edwards
Hi, I must admit I haven't used/updated this library for ages... so it doesn't surprise me that Swift 3 doesn't work. Sorry. One day, I'll go back and revisit... a...
Argh... accidentally closed. Re-opening...
FWIW, it also makes it painful to use `final` fields. eg. consider the following class: ``` @Entity() class Blah { int id; final Map map; Blah(this.id, this.map); String get dbMap...
FWIW, I needed this recently so added it in my local fork with this commit: https://github.com/edwardaux/native_context_menu/commit/3c2f5c43aae702ae35756e944dc3e805aca98cc8 A couple of important notes: * There's an `onSelected` function on `MenuItem` that doesn't...
> We often have to make judgement calls on whether to obey the HIG or follow Apple's lead via their own actual apps, and it's a tough call every time....
Just one more vote for Desktop support... I've got an app that is targeting iOS, Android and desktop, but unless I've got an common analytics provider that works for all...
@marconemagnus Yep, I ended up using that package. My analytics requirements are pretty modest at the moment, but it has been great so far.
I ran into this problem today and just thought I'd add a bit more info in case others stumble across it too. Initially, not generating `==`/`hashCode` didn't make any sense...
Nah, I tried a bunch of other packages that all had their own pros/cons. I ended up going with a forked version of https://pub.dev/packages/interactiveviewer_gallery ... that package mostly does what...
It has been a while since I looked into it... I'm pretty sure it doesn't deal with caching because it just takes a builder that returns a widget - which...