EVOLUTION-MANAGER
Edit File: ui.R
function(request) { material_page(title = HTML('<span>Estados de ánimo de la música</span> <span style="font-size:12px"><a href="mailto:gabrielmorejon@gmail.com" target="_blank">gabrielmorejon@gmail.com</a> - <a href="https://www.grupofmo.com" target="_blank">GrupoFMO</a></span>'), nav_bar_color = 'black', font_color = 'white', background_color = '#828282', tags$head(tags$link(rel = 'icon', type = 'image/png', href = 'green_music_note.png'), tags$title('Sentify')), useShinyjs(), tags$script(jscode), tags$style(appCSS), tags$head(tags$link(rel = 'stylesheet', type = 'text/css', href = 'style.css'), tags$head(includeScript('www/ga.js')), tags$head(includeScript('www/hotjar.js'))), material_row( material_column( width = 3, material_card( title = '', depth = 4, material_text_box('artist_search', "Artista", color = 'black'), conditionalPanel("input.artist_search !== ''", material_dropdown('select_artist', 'Escoja un artista que coincida con la búsqueda', '', color = '#1ed760')), uiOutput('select_artist_ui') ) ), material_column( width = 9, uiOutput('artist_plot') ) ) ) }