---
title: "Supported PDF form fields in React Native"
canonical_url: "https://www.nutrient.io/guides/react-native/forms/introduction-to-forms/form-fields/"
md_url: "https://www.nutrient.io/guides/react-native/forms/introduction-to-forms/form-fields.md"
last_updated: "2026-06-09T10:32:42.848Z"
description: "Discover the various PDF form fields supported in React Native, including text fields, checkboxes, and signature fields for enhanced functionality."
---

# Exploring PDF form fields in React Native

A PDF form is similar to a form in real life. Forms enable a user to add information to a preformatted page. Consider the form shown below as an example:

Each highlighted area is called a field, and it’s where a user can enter information. The PDF specification has a concept of different form field types that can help in this situation. The table below has an exhaustive list of form field types supported by Nutrient.

| Type         | Detail                      |
| ------------ | --------------------------- |
| Text field   | Alphanumeric text           |
| Checkbox     | On/off state                |
| Radio button | Selection of choices        |
| Combo box    | Dropdown list of choices    |
| List box     | Scrollable list of choices  |
| Signature    | Unique electronic signature |
| Button       | Assignable actions          |

---

## Related pages

- [Understanding PDF forms and their advantages](/guides/react-native/forms/introduction-to-forms/what-are-forms.md)

