Input component to manage hashtags like latest social network apps do
npm install react-native-hashtags-input
import HashtagInput from 'react-native-hashtags-input';
export default function App() {
const [tags, setTags] = React.useState<string[]>([]);
return (
<View style={styles.container}>
<HashtagInput tagsArray={tags} setTagsArray={setTags} />
</View>
);
}
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library