Hi ANSON,
Greeting from Syncfusion. We have analyzed your query and we have prepared a sample based on your requirement.
Code snippet for set the image full screen size:
For Android:
Insert following code in MainActivity.cs file inside OnCreate method.
this.Window.AddFlags(WindowManagerFlags.Fullscreen);
For iOS:
Insert following code in AppDelegates.cs file inside FinishedLaunching method after LoadApplication (new App ());
UIApplication.SharedApplication.StatusBarHidden = true;
In Infolist file:
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
|
Please let us know, if you have any other concerns.
Regards,
Muneesh Kumar G.