Make app publicly available without login

How to make app publicly available without login - Purpose is to have simple radio station and live custom pages to be viewed by all no login required and have bottom menu appeared also set icons and links publicly available @Alex T⚜️ Please give us idea.

As for now its hard without editing app.js

Thanks.

  • 1554
  • More
Replies (5)
    • If you need to add more pages to be publicly available without login in the mobile apps then you can add such list of such pages here:

      Studio > Nexus > Settings > Comma separated list of pages URIs, which are available for guests.

      If you need homepage to NOT show login by default, then you need to uncheck this checkbox as well:

      Studio > Nexus > Settings > Display custom homepage with login form only

      • Thanks @Alex T⚜️ 😊 we already try ionic and flutter. Flutter seems fine but will try your suggestion

        • But also we need bottom menu to appear pu blicly.

          • But also we need bottom menu to appear publicly.

            It should be easy, change:

                    {o.state.data.loggedin && (
                      <UnaFooter bubblesNum={o.state.data.bubbles_num} bubbles={o.state.data.bubbles} onMainMenu={o.onMainMenu} onNotificationsMenu={o.onNotificationsMenu} onVideoCallToggle={o.onVideoCallToggle} onRequestPurchase={o.onRequestPurchase} onRequestSubscription={o.onRequestSubscription} onAddMenu={o.onAddMenu} onMessengerMenu={o.onMessengerMenu} onProfileMenu={o.onProfileMenu} />
                    )}
            

            to:

                      <UnaFooter bubblesNum={o.state.data.bubbles_num} bubbles={o.state.data.bubbles} onMainMenu={o.onMainMenu} onNotificationsMenu={o.onNotificationsMenu} onVideoCallToggle={o.onVideoCallToggle} onRequestPurchase={o.onRequestPurchase} onRequestSubscription={o.onRequestSubscription} onAddMenu={o.onAddMenu} onMessengerMenu={o.onMessengerMenu} onProfileMenu={o.onProfileMenu} />
            

            in App.js

            • Will try brother ty again.

              Login or Join to comment.