React Native Input Tag
A versatile and user-friendly component designed to simplify the process of entering and managing tags within a React Native application.
Featuresโ
๐ฏ Core Featuresโ
- ๐ Easy tag input and management
- ๐ Fully customizable autocomplete
- ๐จ Complete custom rendering
- โจ๏ธ Customizable key separators
- โฟ Full accessibility support
๐จ Customization & Stylingโ
- ๐ฏ Extensive styling options
- ๐ก Text highlighting
- ๐ Configurable suggestion limits
- ๐ค Case-sensitive/insensitive filtering
๐ Developer Experienceโ
- ๐ฑ Cross-platform: iOS, Android, and Web
- ๐ Complete TypeScript support
- ๐ Comprehensive documentation
- ๐งช Well tested
Quick Startโ
bun add react-native-input-tag
import React, { useState } from 'react';
import { TagInput } from 'react-native-input-tag';
const App = () => {
const [tags, updateState] = useState({
tag: '',
tagsArray: []
});
return (
<TagInput
tags={tags}
updateState={updateState}
suggestions={['React', 'TypeScript', 'Mobile']}
/>
);
};
Live Examplesโ
Try our interactive demos: