Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
The rc-switch npm package is a React component library for creating switch (toggle) inputs. It allows developers to easily implement switch components in their React applications, providing both visual and functional customization options.
Basic switch
This code sample demonstrates how to render a basic switch component using the rc-switch package. It imports the Switch component from the package and includes it in a React component to be displayed.
import React from 'react';
import Switch from 'rc-switch';
function App() {
return (
<Switch />
);
}
export default App;
Customized switch
This example shows how to customize a switch by adding labels for the checked and unchecked states, and setting the default state to checked. The 'checkedChildren' and 'unCheckedChildren' props allow for custom labels, while 'defaultChecked' initializes the switch in the on position.
import React from 'react';
import Switch from 'rc-switch';
function App() {
return (
<Switch
checkedChildren="on"
unCheckedChildren="off"
defaultChecked
/>
);
}
export default App;
react-switch is a similar package that provides a component for rendering switch inputs in React applications. It offers a different API and additional customization options compared to rc-switch, such as different sizes and colors.
react-toggle offers functionality similar to rc-switch, with a focus on creating toggle switches for React apps. It differentiates itself with a more extensive API for customization, including custom icons for the toggle states.
switch ui component for react
var Switch = require('rc-switch');
var React = require('react');
React.render(<Switch />, container);
name | type | default | description |
---|---|---|---|
prefixCls | String | rc-switch | |
className | String | '' | additional class name of root node |
checked | boolean | false | whether switch is checked |
defaultChecked | boolean | false | whether switch is checked on init |
onChange | Function | called when switch is checked or unchecked |
npm install
npm start
http://localhost:8001/examples/
online example: http://react-component.github.io/switch/examples/
http://localhost:8001/tests/runner.html?coverage
rc-switch is released under the MIT license.
FAQs
switch ui component for react
The npm package rc-switch receives a total of 1,323,961 weekly downloads. As such, rc-switch popularity was classified as popular.
We found that rc-switch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.