Last active
March 7, 2017 04:26
-
-
Save NeedPainkiller/ff495873f493e965467ae70ba2bc6278 to your computer and use it in GitHub Desktop.
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
public class PermissionActivity extends AppCompatActivity { | |
@InjectExtra PermissionContent content; | |
@Nullable @InjectExtra String tag = "TAG"; | |
@Override protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
Dart.inject(this); | |
Bundle bundle = getIntent().getExtras(); | |
PermissionContent content = Dart.get(bundle, "key"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment