Coder Social home page Coder Social logo

subramanyaks / reactjs-toggleswitch Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 221 KB

A simple toggle switch component library for react js application

Home Page: https://www.npmjs.com/package/reactjs-toggleswitch

License: MIT License

TypeScript 68.53% CSS 31.47%
react react-toggle reactjs toggle toggle-button toggle-buttons toggle-switch toggle-switches reactjs-library

reactjs-toggleswitch's Introduction

React JS Toggle Switch

reactjs-toggleswitch is a customizable toggle switch component implemented using react js and TypeScript for React applications. It provides a simple and intuitive way to implement toggle functionality with customizable styles and behavior.

Installation

you can install this package using below npm command

npm install reactjs-toggleswitch

or

yarn add reactjs-toggleswitch

Usage

Import the ToggleSwitch component in your React code and use it as follows:

import React, { useState } from 'react';
import {ToggleSwitch} from 'reactjs-toggleswitch';

const MyComponent: React.FC = () => {
  const [isChecked, setIsChecked] = useState<boolean>(false);

  const handleChange = (checked: boolean) => {
    setIsChecked(checked);
  };

  return (
    <div>
      <h2>Toggle Default Switch Example</h2>
      <ToggleSwitch checked={isChecked} onToggle={handleChange} />
    </div>
  );
};

For more details regarding usage please refer EXAMPLES.md

Note: If styles are not working in your system after installation please import the below style.

import 'reactjs-toggleswitch/dist/cjs/index.css';

Options

The ToggleSwitch component accepts the following props:

Option type Description
onToggle function Callback function called when the switch state changes/toggle. Receives a boolean parameter indicating the new state.
checked boolean Specifies whether the switch is checked or not.
onColor string specifies background color change when switch is checked
offColor string specifies background color change when switch is unchecked
disable boolean specifies for disabling/enabling the toggle.
ariaLabel string used to provide a label or description for an element.
children component specifies thumb icon use any component like font-awesome
id string The value represents the id attribute of the encapsulated input element.
name string The value represents the name attribute of the encapsulated input element.
value string The value represents the value attribute of the encapsulated input element.
width string The value represents width of toggle switch
thumbOnColor string specifies background color of thumb change when switch is checked
thumbOffColor string specifies background color of thumb change when switch is unchecked

Contribution

We welcome contributions! If you'd like to contribute to reactjs-toggleswitch, please follow our Contribution Guidelines.

Author

Subramanya KS

License

This project is licensed under the MIT License - see the LICENSE file for details.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.