dart
dart copied to clipboard
Extras binding and intent builders for Android apps.
This is not first time I run into this, I had this issue before bu I had a single argument so I sort of "fixed it" by setting and getting...
I wrote a new project to reproduce the bug. In `MainActivity`, I simply wrote an inner class `ExtraHolder` and used `@InjectExtra` in it. ``` public class MainActivity extends AppCompatActivity {...
hi there It is really convenient to startActivity with intent using Dart & Henson. I was wondering if I can pass intent data the similar way when I setResult and...
Regarding johncarl81/parceler#229, custom implementations of lists, such as those generated by `Arrays.asList`, `Collections.unmodifiableList` and `List.subList`, are not supported to be passed as an argument to an `Activity` when being parceled,...
First of all I would like to thank **Prateek** for great work. My issue is: When I try to use this the library next way ``` @InjectExtra Class parentActivity =...
I have an destination Activity called DetailActivity, it has 3 filed which need to be injected: ``` @InjectExtra String name = "default name"; @InjectExtra int age = 0; @Nullable @InjectExtra...
Currently the CHANGELOG refers to a 1.2.0 WIP release that never seems to have been completed. There is no CHANGELOG entry for the current 2.0.0 release.
A while ago we integrated Dart with Parceler. Recently FragmentArgs integrated as well and I wanted to point out their approach to the same problem. Specifically, FragmentArgs includes a "`bundler`"...