Base solution for your next web application
Open Closed

How to strip down features for a light mobile app? #2820


User avatar
0
bilalhaidar created

Hello, Is it possible to strip down the web app and remove all screens except for having a simple form (I added) to allow users to access from mobile?

In other words, I need a light version of the web app just for mobile users.

Can you guide me on how to do so with this app?

Thanks


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

    Hi,

    Actually the web app is not designed what you want in mind. Which screens, functions do you need on mobile app ?

  • User Avatar
    0
    bilalhaidar created

    My point is to strip down all framework screens. I will then need to add few HTML Forms only. Keeping in mind that I want to let my users sign-in to the app using the same db.

    Do you think I shall find a way to detect users on tablets or mobiles, redirect them to another angular app, whereby I have a new layout screen, without having any of the existing screens, etc.?

    Thanks

  • User Avatar
    0
    bilalhaidar created

    Any updates please? Thanks

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    If you want to host your mobile version on the same url wihh the real app, you should do it like that, detect user and redirect to another angular app.

  • User Avatar
    0
    bilalhaidar created

    So I let the user sign in to the app, then on the MVC level I detect that the user is on mobile/tablet, redirect to another angular app? I could import the layout from the current app and strip down many screens and resources (js/css)?

    Any good reference online you can point me to on how to do this process between MVC and Angular?

    Thanks

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    I think seperating mobile and web apps and using different layouts (you can create a copy of web app's layour for mobile version) is better. In the future it might be hard to manage a single layout for web and mobile apps.

    I think there are many artciles and anwsers about this isue on the web. This is just an eample <a class="postlink" href="http://stackoverflow.com/questions/32943526/asp-net-5-mvc-6-detect-mobile-browser">http://stackoverflow.com/questions/3294 ... le-browser</a>.

    I think you can find many others :)