Shiny UI Breakthrough: Develop Professional Shiny Apps with shiny.fluent

[This article was first published on r – Appsilon | End­ to­ End Data Science Solutions, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

shiny.react and shiny.fluent by Appsilon

Watch an introduction to shiny.fluent by Appsilon CTO Marek Rogala. The shiny.fluent portion begins at 2:11:10. This presentation was a part of Appsilon’s Shiny Masterclass at rstudio::global in collaboration with RStudio.

Today, Appsilon is officially announcing two new R packages: shiny.fluent and shiny.react. shiny.fluent brings Microsoft’s Fluent UI to Shiny, and shiny.react integrates the React JavaScript library with Shiny. shiny.react makes shiny.fluent possible, but we’ll mostly be covering shiny.fluent in this article.

shiny.fluent: A Major Breakthrough in Shiny UI

We believe that a great UI plays a huge role in the success of application projects. However, many Shiny developers do not have a background in design and struggle with creating professional-looking dashboards. We created the shiny.fluent package as a simple way to make Microsoft’s Fluent UI accessible to Shiny developers. shiny.fluent allows you to build cohesive, professional-looking Shiny apps that have an enterprise aesthetic without stressing over every little design detail.

We gave early access to shiny.fluent to multiple testers at Global 2000 companies, and they were all able to quickly create Shiny dashboards with an enterprise aesthetic without the typically large time and resource investment that it takes to create such apps. Now that shiny.fluent is has been publicly released, you can join them!

shiny.fluent is a game-changer for companies already using Microsoft tools on a daily basis, because everyone is already comfortable with the Microsoft UI. shiny.fluent adds instant credibility to Shiny apps.” –shiny.fluent user at a Fortune 500 Company

shiny.fluent gives your apps:

  • A beautiful, professional look consistent with enterprise applications
  • A rich set of components easily usable in Shiny
  • The fast speed of development that Shiny is famous for

shiny.fluent provides components from Microsoft’s Fluent UI natively in Shiny. It includes simple components like text inputs and sliders as well as advanced components like calendar or people picker. It also includes extended features like components for guiding users through your application for the first time. With shiny.fluent, Shiny developers can now take advantage of a well-designed components system built with a strong emphasis on User Experience. It’s much simpler and faster to draw on the Fluent UI component system for a cohesive UI than to struggle through creating an attractive interface from scratch. 

shiny.react: Bringing React.js to Shiny

shiny.fluent is built with our new shiny.react package. Shiny.react will not be the main focus in this article, but it is the machinery that makes all of this shiny.fluent magic possible. As Fluent UI is built in React, React needed to be specifically integrated with Shiny. shiny.react provides that possibility for shiny.fluent, and shiny.react can also be used to make other libraries from the vast React ecosystem available in Shiny. shiny.react is an exciting breakthrough in Shiny development, and we have expended significant resources to create this package and make it available to Shiny developers. You can learn more about shiny.react here.

shiny.fluent: Demo Dashboard

Let’s see an example of a complete dashboard built with shiny.fluent that showcases components like Nav for navigation, DetailsList for a table, as well as DatePicker, PeoplePicker, Toggle, and Slider.

You can explore all components live here: https://demo.appsilon.com/apps/fluentui

Who Can Benefit from shiny.fluent?

Creating Shiny apps that look professional and modern while providing excellent UX was so far available only to teams with talented web developers on board. With shiny.fluent, Appsilon is bringing the enterprise application feel to independent Shiny developers and smaller teams in a much faster, easier way.

The package is built with ease of use in mind. Our goal was to make it consistent with how things are done in Shiny. You get inputs and buttons that work just like standard inputs in Shiny. You can browse components documentation through the standard R help system. We have a rich set of examples in place to help you get started.

Shiny.fluent is meant to be used by developers with at least intermediate knowledge of Shiny. That said, Fluent UI is more flexible and more low-level than Bootstrap, and there is additional complexity coming from using React in Shiny. You should expect using shiny.fluent to be somewhat more complex than vanilla Shiny or shiny.semantic. At some point you will likely want to browse the original Fluent UI documentation. With the slight amount of additional work over vanilla Shiny, you get more power, more flexibility, and much better UI in return.

Getting Started

The best place to start is the official shiny.fluent package website. We have a number of tutorials, from “Getting started” to Full dashboard UI in Shiny and Fluent.

These replicable examples are especially useful given shiny.fluent‘s relatively low-level API. You can discover many optional parameters and custom styling that is possible. shiny.fluent provides all components from Microsoft’s Fluent UI library. Browse the official docs for Fluent UI or start typing shiny.fluent:: in RStudio to see all available controls.

All components are documented, so if you run ?shiny.fluent::MyComponentName, you’ll see documentation for this component in RStudio, along with examples. When in doubt, open the Fluent UI docs for details.

A good way to learn more is to look at other examples of shiny.fluent apps. Once you install the library, you can run them with shiny.fluent::runExample(“example_name”). We recommend the following for starters:

  • demo: a demo app for analyzing sales reps performance (run this in RStudio)
  • dashboard: a showcase of all available components along with documentation.

There are also usage examples for individual components. Use shiny.fluent::runExample() to list all available examples.

Here’s the simplest possible example of an app:

shinyApp(
    ui = div(
      Checkbox.shinyInput("checkbox", value = TRUE),
      textOutput("checkboxValue")
    ),

    server = function(input, output) {
      output$checkboxValue <- renderText({
        sprintf("Value: %s", input$checkbox)
      })
    }
  )

We’d Love to Hear Your Feedback

We encourage you to try out shiny.fluent and tell us what you think. We have a feedback thread on our Github Discussions – please feel free to post there with comments and questions. If you enjoy the package and would like Appsilon to keep developing open-source packages for Shiny developers, please throw us a star on this package and our other Shiny packages on GitHub. Subscribe to our Newsletter for updates about shiny.fluent, shiny.react, and future open-source packages. 

Appsilon is Hiring

Appsilon is a global, remote-first company driven by a mission to improve society and protect the environment. We have team members in 6+ countries across many time zones. We’re always looking for kind, talented people to join our team! See all open roles on our Careers Page if you’re interested in opportunities with us. We’re currently in search of a Senior React Developer (Freelance) and Senior Shiny Developers. Referral bonuses are available if you recommend the right person.

Article Shiny UI Breakthrough: Develop Professional Shiny Apps with shiny.fluent comes from Appsilon | End­ to­ End Data Science Solutions.

To leave a comment for the author, please follow the link and comment on their blog: r – Appsilon | End­ to­ End Data Science Solutions.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)