2.0.15 • Published 9 months ago

react-native-just-checkbox v2.0.15

Weekly downloads
14
License
MIT
Repository
github
Last release
9 months ago

screenshot

react-native-just-checkbox (v2)

react-native-just-checkbox is a customizable checkbox component for React Native, offering a variety of configuration options to suit your app's needs.

Key features
  • Customizable size and color.
  • Animation options.
  • Fill mode for different platforms.

📌 Migration Guide from v1 to v2

Getting Started

Installation

First, install the package:

$ npm install react-native-just-checkbox

Quick Start

import React, { useState } from 'react';
import { StyleSheet, Text, View } from "react-native";
import { CheckBox } 'react-native-just-checkbox';

export default function App() {
  const [isChecked, setIsChecked] = useState(false);

  return (
    <View style={styles.container}>
      <CheckBox isChecked={isChecked} onPress={() => setIsChecked(!isChecked)} />
    </View>
  );
};

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: "#fefefe",
    justifyContent: "center",
    paddingHorizontal: 50,
  }
});

Props

PropTypeDescriptionDefault
isCheckedbooleanWhether the checkbox is checked or not.-
isDisabledbooleanWhether the checkbox is disabled or not. Disabled checkboxes will not trigger touch events and their opacity will be set to 0.2.false
checkBoxSizenumberThe size of the checkbox (applied to both width and height).20
checkColorstringThe color of the checkmark.#1a1a1a
animationType"bounce" | "opacity" | "none"The animation type for the checkbox."none"
fillModebooleanWhether to fill the background of the CheckBox. If fillMode is set to true , fill color is automatically set to iOS and Android primary colors followed by HIG and Material Design guide.false
fillColorstringThe background fill color of the CheckBox.-
borderWidthnumberThe border width of the CheckBox.1.5
borderRadiusnumberThe border radius of the CheckBox.3
onPress() => voidFunction called when the checkbox is pressed.-

Additional

2.0.15

9 months ago

2.0.3

11 months ago

2.0.13

10 months ago

2.0.5

11 months ago

2.0.14

10 months ago

2.0.4

11 months ago

2.0.11

10 months ago

2.0.7

11 months ago

2.0.12

10 months ago

2.0.6

11 months ago

2.0.9

10 months ago

2.0.10

10 months ago

2.0.8

11 months ago

2.0.1

11 months ago

2.0.0

11 months ago

1.0.15

11 months ago

1.0.14

11 months ago

1.0.13

11 months ago

1.0.12

5 years ago

1.0.11

5 years ago

1.0.9

5 years ago

1.0.10

5 years ago

1.0.8

5 years ago

1.0.7

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.3

5 years ago

1.0.0

5 years ago