# Tomato Froms

as we go to integrate our tomato plugins inside the Flutter app we build a module to make it easy to integrate the package into our Flutter app without any code.

to make this happen you need to install [Tomato Forms](/plugins/tomato-forms.md) and create a new form with fields from the dashboard and then use the form ID to access the form on Flutter.

to use a create form you can use it like this

```dart
storage.remove('form-values');
Get.toNamed('/forms/1');
```

where `1` is the id of form, to use it as an edit form you can use it like this&#x20;

```dart
storage.write('form-values', controller.data?.toJson());
Get.toNamed('/forms/1');
```

where `1` is the id of the form and `controller.data?.toJson()` is the data you when to fill it on the form, make sure to make the keys matched&#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tomatophp.com/plugins/tomato-flutter/tomato-froms.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
