Last active
April 26, 2017 22:54
-
-
Save smaugho/67a718096707f56473e346527a408368 to your computer and use it in GitHub Desktop.
UserFragment Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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