Demonstração de biblioteca desenvolvida por mim para criação de formulários dinâmicos em Flutter a partir de um JSON. A library to create dynamic forms on flutter using JSON, made to use with WebAPI's
AVISO! ESSA DEMONSTRAÇÃO CONTÉM APENAS UM TIPO DE INPUT (Input Simple) POIS ESSE REPOSITÓRIO ESTÁ APENAS PARA PORTIFÓLIO, ESTAREI LANÇANDO UM REPOSITÓRIO OFICIAL COM TODOS OS TIPOS DE INPUT PARA ELA NO FUTURO
[
{
"type": "Input",
"id" : "252io5yu4i",
"title": "Assunto",
"style": {
"placeholder": "Campo",
"helperText" : "Capo de exemplo",
"helperTextColor": "#000000",
"requiredText" : "Campo obrigatório",
"minimumRequiredText" : "Minimo 10 caracteres"
},
"validation": {
"required" : true,
"minimumRequired" : 5,
"maxLength" : 10,
},
},
{
"type": "Input",
"id": "534ioytgrg",
"title": "Assunto 2",
"style": {
"placeholder": "Campo",
"helperText": "Capo de exemplo",
"helperTextColor": "#000000",
"requiredText": "Campo obrigatório",
"minimumRequiredText": "Minimo 8 caracteres"
},
"validation": {
"required": true,
"minimumRequired": 8,
}
}
]
This project is a starting point for a Flutter application.
A few resources to get you started if this is your first Flutter project:
For help getting started with Flutter, view our
online documentation, which offers tutorials,
samples, guidance on mobile development, and a full API reference.