Giter Site home page Giter Site logo

parcelz / react-native-toggle-switch Goto Github PK

View Code? Open in Web Editor NEW

This project forked from prsn/react-native-toggle-switch

0.0 0.0 0.0 1.65 MB

Toggle switch with label and swipe behaviour

JavaScript 64.80% Java 6.74% Objective-C 18.58% Starlark 9.88%

react-native-toggle-switch's Introduction

react-native-toggle-switch

A toggle switch with a label inside, on top of that it animates smoothly. Click and drag or just click it toggles either way.

Motivation

Toggle switches are quite common in almost every application, and we have so many UX variations of it. Based on different variations, different libraries with its own design and animation has been created by contributors.

Our UX demanded a Toggle with a label, which has both click and slide behavior. None of the existing libraries offered this complete solution. Some had the toggle behavior but the sliding behavior was missing, some had the swipe behavior but did not offer to have a label in it. This library has been created to fill that gap.

Working demo

Install

npm install --save rn-toggle-switch

Usages

import ToggleSwitch from 'rn-toggle-switch'

class Demo extends ... {
  ...
  render() {
    return (
      ...
      <ToggleSwitch
        text={{on: 'PRESENT', off: 'ABSENT', activeTextColor: 'white', inactiveTextColor: '#B7B8BA'}}
        textStyle={{fontWeight: 'bold'}}
        color={{ indicator: 'white', active: 'rgba(32, 193, 173, 1)', inactive:  'rgba( 247, 247, 247, 1)', activeBorder: '#41B4A4', inactiveBorder: '#E9E9E9'}}
        active={true}
        disabled={false}
        width={80}
        radius={25}
        onValueChange={(val) => {
          /* your handler function... */
        }}
      />
      ...
    );
  }
}

Properties

Attribute Description
text.on Text to be displayed when Switch is in Active state
text.off Text to be displayed when Switch in in inactive state
text.activeTextColor Active text color
text.inactiveTextColor Inactive text color
textStyle Any valid text style supported by RN
color.indicator The color of the Slider / Indicator
color.active Background color of the Switch when it is in active state
color.inactive Background color of the Switch when it is in inactive state
color.activeBorder The border color when Switch is in active state
color.inactiveBorder The border color when Switch is in inactive state
active Initial state of the Switch
disabled true if the control is disabled
width Width of the control
radius Radius of the Slider / Indicator
onValueChange The function to be called when Switch changes its states

Contribution

Pease feel free to create issue and raise PR ๐Ÿ˜Š

react-native-toggle-switch's People

Contributors

ivks avatar parcelz avatar prsn avatar unnatiz avatar

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.