Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-circle-checkbox

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-circle-checkbox

Circle checkbox component for React Native

  • 0.1.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
235
increased by6.82%
Maintainers
1
Weekly downloads
 
Created
Source

ReactNativeCircleCheckbox

Circle-style checkbox component for React Native.

Installation

  npm install react-native-circle-checkbox --save

Usage

import CircleCheckBox, {LABEL_POSITION} from 'react-native-circle-checkbox';  
   
<CircleCheckBox
  checked={true}
  onToggle={(checked) => console.log('My state is: ', checked)}
  labelPosition={LABEL_POSITION.RIGHT}
  label="Checkbox example"
/>

Preview

alt tag

Available properties:

  • checked : initial state of checkbox. Default: false
  • onToggle : function that will be invoked by pressing to checkbox with checked property as argument.
  • outerSize : Diameter of outer circle. Minimum: 10, default: 26
  • filterSize : Diameter of underlayer circle. Minimum: 7, default: 23
  • innerSize : Diameter of flag. Minimum: 2, default: 18
  • outerColor : Color of outer circle. Default: #FC9527
  • filterColor : Color of underlayer circle. Default: #FFF
  • innerColor : Color of flag. Default: #FC9527
  • label : Checkbox label. Default: empty
  • labelPosition : Label rendering position. Default: right, may be 'right' or 'left'. For your convenience this package exports LABEL_POSITION object with two keys - RIGHT and LEFT. You can use it for labelPosition definition.
  • styleCheckboxContainer: Styles for checkbox container.
  • styleLabel: Styles for label.

Keywords

FAQs

Package last updated on 24 Apr 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc