inst/shiny/ui.R

library(shiny)

shinyUI(fluidPage(
  
  fluidRow(column(
    width = 6, 
    offset = 3,
    textInput('pesquisa', 'Termo de pesquisa')
  )),
  
  fluidRow(column(
    width = 6, 
    offset = 3,
    submitButton('Pesquisar')
  )),
  
  fluidRow(column(
    width = 6, 
    offset = 3,
    textOutput('resultado_txt')
  )),
  
  fluidRow(column(
    width = 6, 
    offset = 3,
    tableOutput('resultado')
  ))
  
))
jtrecenti/inpi documentation built on May 20, 2019, 3:17 a.m.