Number Field
The component captures numeric input with built-in validation. Use it to collect quantity, price, or other numeric information with proper validation.
The component includes built-in number validation, optional min/max constraints, and step increments to ensure accurate numeric data entry. It supports various number formats including integers and decimals, with validation feedback to prevent entry errors during high-volume retail operations.
Use cases
- Quantities: Collect product quantities, inventory counts, or stock levels.
- Pricing: Capture pricing information, discounts, or monetary amounts.
- Filtering: Enable numeric filtering for reports or analytics with range constraints.
- Validation: Support form submissions with proper min/max validation and bounds checking.
Anchor to examplesExamples
Anchor to example-capture-numeric-input-with-validationCapture numeric input with validation
Collect numeric data with built-in validation and constraints. This example shows how to implement a NumberField that supports integers and decimals, enforces min/max values, and provides step increments for quantity, price, or measurement inputs.
Capture numeric input with validation

Capture numeric input with validation
Examples
Capture numeric input with validation
Description
Collect numeric data with built-in validation and constraints. This example shows how to implement a NumberField that supports integers and decimals, enforces min/max values, and provides step increments for quantity, price, or measurement inputs.
React
import React, {useState} from 'react'; import { NumberField, Screen, ScrollView, Navigator, Text, reactExtension, } from '@shopify/ui-extensions-react/point-of-sale'; const SmartGridModal = () => { const [number, setNumber] = useState(''); return ( <Navigator> <Screen name="NumberField" title="NumberField Example"> <ScrollView> <NumberField label="Number" placeholder="1234" helpText="Enter a numeric value." value={number} onChange={setNumber} required={true} action={{ label: 'Clear', onPress: () => setNumber(''), }} /> <Text>Entered Value: {number}</Text> </ScrollView> </Screen> </Navigator> ); }; export default reactExtension('pos.home.modal.render', () => ( <SmartGridModal /> ));TS
import { Navigator, Screen, ScrollView, Text, NumberField, extension, } from '@shopify/ui-extensions/point-of-sale'; export default extension('pos.home.modal.render', (root, api) => { const clearHandler = () => { numberField.updateProps({value: ''}); textBox.replaceChildren(''); }; const numberField = root.createComponent(NumberField, { label: 'Number', placeholder: '1234', helpText: 'Enter a numeric value.', value: '', action: {label: 'Clear', onPress: clearHandler}, }); const textBox = root.createComponent(Text); const onChangeHandler = (newValue: string) => { numberField.updateProps({value: newValue}); const textContent = `Selected Date: ${newValue}`; textBox.replaceChildren(textContent); }; numberField.updateProps({onChange: onChangeHandler}); const scrollView = root.createComponent(ScrollView); scrollView.append(numberField); scrollView.append(textBox); const screen = root.createComponent(Screen, { name: 'NumberField', title: 'Number Field Example', }); screen.append(scrollView); const navigator = root.createComponent(Navigator); navigator.append(screen); root.append(navigator); });
Anchor to propertiesProperties
Configure the following properties on the component.
- Anchor to labellabelstringrequired
The content to use as the field label that describes the text information being requested.
- Anchor to actionactionInputAction
A button configuration object displayed under the text field to provide extra functionality.
- Anchor to disableddisabledboolean
Controls whether the field can be modified. When
true, the field is disabled and users cannot edit its value.- Anchor to errorerrorstring
An error message that indicates a problem to the user. The field is given specific stylistic treatment to communicate issues that must be resolved immediately.
- Anchor to helpTexthelpTextstring
The label text displayed under the field that provides guidance or instructions to assist users.
- Anchor to inputModeinputMode'decimal' | 'numeric'
The virtual keyboard layout to display:
decimal: A keyboard layout that includes decimal point support for entering fractional numbers, prices, or measurements with decimal precision.numeric: A keyboard layout optimized for integer-only entry without decimal point support, ideal for quantities, counts, or whole number values.
- number
The highest decimal or integer to be accepted for the field. Users can still input higher numbers by keyboard—you must add appropriate validation logic.
- Anchor to maxLengthmaxLengthnumber
The maximum number of characters allowed in the text field.
- number
The lowest decimal or integer to be accepted for the field. Users can still input lower numbers by keyboard—you must add appropriate validation logic.
- Anchor to onBluronBlur() => void
A callback function executed when focus is removed from the field.
- Anchor to onChangeonChange(value: string) => void
A callback function executed when the user has finished editing the field, receiving the new text value as a parameter. You should update the
valueproperty in response to this callback.- Anchor to onFocusonFocus() => void
A callback function executed when the field receives focus.
- Anchor to onInputonInput(value: string) => void
A callback function executed immediately when the user makes any change in the field. Use this for real-time feedback, such as clearing validation errors as soon as the user begins making corrections. Don't use this to update the
valueproperty—thecallback is the appropriate handler for updating the field's value.- Anchor to placeholderplaceholderstring
A short hint that describes the expected value of the field.
- Anchor to requiredrequiredboolean
Whether the field needs a value for form submission or validation purposes.
- Anchor to valuevaluestring
The current text value for the field. If omitted, the field will be empty. You should update the
valueproperty in response to thecallback.
InputAction
Defines the configuration object for action buttons displayed below input fields to provide extra functionality.
- disabled
Whether the action button can be pressed.
boolean - label
The text displayed on the action button.
string - onPress
A callback function executed when the action button is pressed.
() => void
export interface InputAction {
/**
* The text displayed on the action button.
*/
label: string;
/**
* A callback function executed when the action button is pressed.
*/
onPress: () => void;
/**
* Whether the action button can be pressed.
*/
disabled?: boolean;
}Anchor to best-practicesBest practices
- Select the right input mode for your data type: Use
'decimal'input mode for prices, measurements, or any values requiring decimal precision. Use'numeric'for quantities, counts, or integer values where decimal points aren't needed. This optimizes the keyboard layout for the expected input. - Provide helpful guidance with helpText: Use the
property to explain numeric constraints, valid ranges, units, or formatting expectations. For example, "Enter a quantity between 1 and 999" or "Price in dollars with two decimal places." - Implement proper validation logic: While
min/maxproperties provide guidance, they don't prevent invalid keyboard input. Implement validation in yourcallback to check bounds, format, and other requirements, then display errors using theerrorproperty. - Use action buttons for enhanced functionality: Use the
actionproperty to provide helpful actions like "Clear Field," "Set to Minimum," or "Calculate Total." This enhances usability by providing quick access to common numeric operations.
Anchor to limitationsLimitations
provides numeric input but doesn't enforcemin/maxconstraints for keyboard input—you must implement validation logic to enforce bounds and display appropriate errors.- The
requiredproperty adds semantic meaning only—it doesn't trigger automatic error display or prevent form submission without additional validation logic. - Action buttons are limited to simple press callbacks—complex action workflows require custom implementation or additional components.