Base solution for your next web application
Open Closed

Trying to speedup Xamarin startup #5358


User avatar
0
Ricavir created

@Alper : I would like to speedup xamarin startup and would like to have your advice.

I was thinking on following : 1 . store appcontext localy to avoid httprequest on each startup 2. display a spinner (or any animation) after 1-2 seconds before displaying login page

Thanks for your help


2 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    1 . store appcontext localy to avoid httprequest on each startup

    Probably this will speedup the initial load. You can set a lifetime for locallt stored data and refresh it from server if the lifetime expires.

  • User Avatar
    0
    Ricavir created

    thank you @ismcagdas

    I also had a discussion with a zero user that implement this kind of solution : <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/issues/975">https://github.com/aspnetzero/aspnet-ze ... issues/975</a>