react-native-swiggle
v0.5.1
Published
Toggle/Switch component for React Native
Downloads
3
Maintainers
Readme
react-native-swiggle
What is the correct term? Toggle or Switch? I don't know. Who knows? That's why I created this component. It's a toggle, it's a switch, it's a Swiggle.
On a more serious note, this is a simple Toggle component for React Native.
Installation
npm install react-native-swiggle
Usage
import Swiggle from 'react-native-swiggle';
export default function App() {
const [exampleValue, setExampleValue] = useState(true);
const handleSwiggle = () => {
setExampleValue((prevValue) => !prevValue);
};
return (
<View style={styles.container}>
<Swiggle isActive={exampleValue} onPress={handleSwiggle} />
</View>
);
}
Usage with optional props
Default colors: Background disabled: gray, Background enabled: green, Inner circle disabled: black, Inner circle enabled: white
import Swiggle from 'react-native-swiggle';
export default function App() {
const [exampleValue, setExampleValue] = useState(true);
const handleSwiggle = () => {
setExampleValue((prevValue) => !prevValue);
};
return (
<View style={styles.container}>
<Swiggle
isActive={exampleValue}
onPress={handleSwiggle}
enabledBackgroundColor="blue"
disabledBackgroundColor="red"
innerCircleEnabledColor="white"
innerCircleDisabledColor="violet"
/>
</View>
);
}
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT