Open udurraniAtPresage opened 2 months ago
I read on the Framework7 login screen documentation that f7LoginServer is not recommended. Alternatively, in a shiny app, I can use something like:
f7LoginServer
tabsetPanel( id = "pages", type = "hidden", selected = "auth", tabPanelBody( value = "authentication", "<UI for log in>" ), tabPanelBody( value = "content", "<App content>" ) )
And then in the server part:
observeEvent("<Authenticated user>", { updateTabsetPanel( session = session, inputId = "pages", selected = "content" ) })
Is there an equivalent in shinyMobile, i.e., something like tabsetPanel that could be hidden? I did not see the type argument in f7TabLayout.
tabsetPanel
type
f7TabLayout
I read on the Framework7 login screen documentation that
f7LoginServer
is not recommended. Alternatively, in a shiny app, I can use something like:And then in the server part:
Is there an equivalent in shinyMobile, i.e., something like
tabsetPanel
that could be hidden? I did not see thetype
argument inf7TabLayout
.