Add the dependency:
npm i @freakycoder/react-native-switch-button
"@freakycoder/react-native-bounceable": ">= 0.2.5"
import SwitchButton from "@freakycoder/react-native-switch-button";
<SwitchButton
text="Notification"
inactiveImageSource={require("./assets/notification.png")}
activeImageSource={require("./assets/notification-3.png")}
onPress={(isActive: boolean) => console.log(isActive)}
/>
You can checkout the example project 🥰
Simply run
npm i
react-native run-ios/android
should work of the example project.
Property | Type | Default | Description |
---|---|---|---|
text | string | undefined | set the text of the button |
activeImageSource | Image Source | undefined | set the active image source |
inactiveImageSource | Image Source | undefined | set the inactive image source |
isActive | boolean | false | set the active state initially |
onPress | function | default | set your own logic for onPress functionality |
mainColor | string | #f1bb7b | change the main animated color |
originalColor | string | #fff | change the original/default animated color |
tintColor | string | #f1bb7b | change the tint color for the image |
disableText | boolean | false | disable the text part if you only want to use switch button itself |
style | ViewStyle | default | set or override the style object for the main container |
textStyle | TextStyle | default | set or override the style object for the text |
imageStyle | ImageStyle | default | set or override the style object for the image |
textContainerStyle | ViewStyle | default | set or override the style object for text container |
-
LICENSE - Write an article about the lib on Medium
FreakyCoder, kurayogun@gmail.com
React Native Switch Button is available under the MIT license. See the LICENSE file for more info.