Page only shows up when you rotate screen in iOS - asp.net

I have a website that is written in ASP.NET and VB. When trying to view certain pages on an iOS device, the screen will load just blank, but when you rotate the screen all of the data appears. Why is it doing this and how do I make it so that it will load without having to rotate the screen?

Force a screen update when the page is done loading. Something like follows:
// Page loading code
[yourWebView setNeedsDisplay]
// Other code

Related

Console preview panel - how to reset size?

So the console preview panel at the bottom of the page remembers how big you had it last time you previewed. Usually this is great! But somehow mine is currently maximized, so the only thing that shows up is the Page dropdown at the top of the page (and anything in the console, if I switch between pages and the pages have things that log on load). The rest is just white console. Any idea how to get back the default view where the console is 20% of the bottom of the page? There is no visible dragging bar frame thing anywhere.
I can change my preview to console=0 to be able to use it, but I'd like a way to restore the default position of the panel.
Normally you should be able to hover on the top border of the console panel and resize it as you wish. An icon will appear, similar as in the image below:
Nonetheless, if you are doing your previews on a mobile device such as a tablet, then such thing is not possible to do. Therefore; a hacky way to do it would be to put the following code on the onAttach event handler of the page that is loading:
var splitPanel = widget.root.getElement().parentElement
.parentElement.parentElement.parentElement
.parentElement.parentElement.children[0].children[3];
splitPanel.style.height = "75px";
Nota bene: this is intended to ONLY work in preview

Xamarin forms splash screen with lottie animation

Is it possible to have a lottie animation when the splash screen is launched?
any examples out there on xamarin?
thanks
No, it's impossible on iOS. The launch screen on iOS only accepts the static image and we can't add any code behind to adjust its display.
If you want to implement it on Xamarin. I recommend you to use a splash page as the App's MainPage first. Place your animation there. Then change the App's MainPage to your first page after the animation has finished.
I don't think it is possible, because there is no code-behind available.
Workaround would be to place a screen after the splash screen and add your Lottie animation there. This way you can also control how long you want to show the (fake) splashscreen.

How to create splash screen in tornadofx

I could not find any example, neither any resource on how to create a splash screen in tornadofx. I have a working splash screen in plain javafx along the same line of this example : https://gist.github.com/jewelsea/2305098
But, I have no clue on how to achieve it in tornadofx as it uses different paradigm with views and fragments instead of stage and screen.
You are not using the JavaFX preloader here as far as I can see, so this is really no different from opening one View while you do your loading, and then replacing that View with another View when you're done. Just point your app class to a SplashScreenView, handle your loading there, then do replaceWith(MainView::class) when you are done. In MainView, you might want to override the onDock callback and do currentStage?.sizeToScene() to make sure the window resizes to your desired size.

How can I get timeline data from the profiler?

When I open a page of my application in the browser, I can see the debug toolbar at the bottom of the page. When I click on the timeline, however, the data is shown in a canvas.
I'm blind, and thus can't interact with a canvas through my screen reader. I'm wondering if there's a way to view the timeline data, without having it drawn on a canvas?

Reset Zoomed Image When Switching to next Fragment

I am working on a magazine type application for galaxy tab 10.1. I have created each page using Fragment.User can swipe his finger horizontally to move to next page which is a different fragment. Most of the pages are "full page image".I am using this library for zooming/pinch zoom static pages/images.
Problem I am facing -
(1) If i zoom-in a page and than scroll to left or right end of page and than move to next fragment/page.After that when i go back to previous fragment/page,the page is still in zoomed state. What i am trying to do is reset the page in normal state when i move to next page/fragment.
Thanks

Resources