Picker

Material UI Date / Time picker

schema.json
{
  "title": "Example for rendering date component",
  "description": "A simple form with date component",
  "type": "object",
  "properties": {
    "date": {
      "type": "material-date",
      "title": "Date"
    },
  }
}
uiSchema.json
{
  "date": {
     "type": "material-date",
     "title": "Date"
   },
}
formData.json
{
  "date": "2020-08-22T08:07:33+02:00"
}

Last updated