Fix breaking change - nativeView property should have setter (#4750)

Exposed savedInstanceState on LaunchEventArgs so some controls that need Bundle to initialize could get it from there.
This commit is contained in:
Hristo Hristov
2017-08-25 11:13:51 +03:00
committed by GitHub
parent d62df3789c
commit c98443b331
3 changed files with 8 additions and 3 deletions

View File

@@ -80,6 +80,8 @@ export interface LaunchEventData extends ApplicationEventData {
* If not set a new Frame will be created as a root view in order to maintain backwards compatibility.
*/
root?: View;
savedInstanceState?: any /* android.os.Bundle */;
}
/**