Git Product home page Git Product logo

react-native-volume-slider's Introduction

React Native VolumeSlider component

MPVolumeView bridge to React Native (NOTE: MPVolumeView works only on physical devices)

Default styles

Custom styles

Installation

  1. Install package via npm:
npm install react-native-volume-slider
  1. Link your library: either by using rnpm link or like it's described here.
  2. Inside your code include JS part by adding
import VolumeSlider from 'react-native-volume-slider';
  1. Connect your device and run application! (NOTE: MPVolumeView works only on physical devices)

Volume Slider

import React, { Component } from 'react';
import { View, StyleSheet } from 'react-native';
import VolumeSlider from 'react-native-volume-slider';

class PlayerVolume extends React.Component {

  volumeChange(value) {
    // body
  }

  render() {
    return (
      <View>
        <VolumeSlider
          style={styles.slider}
          thumbSize={{
            width: 8,
            height: 8
          }}
          thumbTintColor="rgb(146,146,157)"
          minimumTrackTintColor="rgb(146,146,157)"
          maximumTrackTintColor="rgba(255,255,255, 0.1)"
          showsRouteButton={true}
          onValueChange={this.volumeChange.bind(this)} />
      </View>
    );
  }
};

const styles = StyleSheet.create({
  slider: {
    height: 30,
    marginLeft: 7,
  }
});

Props

style

View styles...

minimumTrackTintColor

The color used for the track to the left of the button. Overrides the default blue gradient image.

maximumTrackTintColor

The color used for the track to the right of the button. Overrides the default blue gradient image.

onValueChange

Callback continuously called while the user is dragging the slider or user hits volume buttons.

thumbSize

The size of the thumb area that allows moving the thumb.

thumbTintColor

The color used for the thumb.

thumbImage

Specify an image here to use as thumb. This will be drawn to the round

showsRouteButton

Indicates whether or not to show the routeButton where the user can select the output target (airplay, headphones)

react-native-volume-slider's People

Contributors

benjaminpaap avatar ifours avatar lgraubner avatar mortadaak avatar sooth-sayer 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.