I'm trying to make a NBA app on Shiny, and right now I'm trying to make a search engine that shows you a player's stats. This is what it looks like right now.
However, I was wondering if there was any package that lets me spruce it up. For example, I'd like to add a background, add relevant info beside the image, and then have stats below. The ESPN and NBA ones are good examples.
Asked
Active
Viewed 37 times
0

Pedro Guizar
- 357
- 2
- 9
-
1Please provide a [reproducible minimal example](https://stackoverflow.com/q/5963269/8107362) and show your efforts so far. To build such an app in shiny you will have to ppush it to its limits, I guess – mnist Nov 25 '19 at 17:46
-
1Try shinydashboard. Then use the `box` function to wrap things in boxes to control the layout – MDEWITT Nov 25 '19 at 18:03
-
@MEDWITT shinydashboard is the way to go – Pedro Guizar Nov 25 '19 at 19:35
-
Look at shinydashboardplus as well for pre-built options. To do above, you would have to create all custom functions in HTML/CSS. – Kevin Nov 25 '19 at 20:14