We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
.The text was updated successfully, but these errors were encountered: