Skip to content

Instantly share code, notes, and snippets.

@smaugho
Last active April 26, 2017 22:54
Show Gist options
  • Save smaugho/67a718096707f56473e346527a408368 to your computer and use it in GitHub Desktop.
Save smaugho/67a718096707f56473e346527a408368 to your computer and use it in GitHub Desktop.
UserFragment Example
@EFragment(R.id.fragment_user)
public class UserFragment extends Fragment {
@Model
@UseModel
@Recollect(validate = true)
User user;
@Click
void next() {
$Recollect(user);
$AddressFragment().user(user);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment