This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Description
The attribute values for the styles only accept a style object, they do not support the adding of styles from StyleSheet.create().
I have to use;
tagTextStyle={{ color: '#fff', fontWeight: 'bold',fontSize: 12 }}
whereas I would prefer to use
tagTextStyle={styles.tagText}
I think this is a reversion from an earlier version of react-native-tags, as the styles.tagText would be loaded in as id reference to the style, not the styles object, so this throws warnings in the App.
Many thanks