react-native-volume-controller
v1.2.1
Published
Volume controller for iOS and Android
Readme
react-native-volume-controller
Volume Controller for iOS and Android.
First installation step (applied for both iOS & Android)
$ npm install react-native-volume-controller --save
2. Automatic installation
$ react-native link react-native-volume-controller
3. Manual installation
- In XCode, in the project navigator, right click
Libraries➜Add Files to [your project's name] - Go to
node_modules➜react-native-volume-controller=>ios- add
ReactNativeVolumeController.xcodeprojto the Libraries folder in your XCode project
- add
- In XCode, in the project navigator, select your project. Add
libReactNativeVolumeController.ato your project'sBuild Phases➜Link Binary With Libraries - Run your project (
Cmd+R)
Android
Manual installation
- In Android Studio open
Module Settingsand add a Gradle Project. - Look for
react-native-volume-controllerandroid folder and link with a Gradle. - Open MyApplication.java from main app and put the ReactNativeVolumeControllerPackage
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new ReactNativeVolumeControllerPackage()
);
}Usage
Using component
import { SliderVolumeController } from 'react-native-volume-controller';
class PlayerUI extends Component {
render() {
return (
<SliderVolumeController />
);
}
}Style props
Use the props style like a Slider
TODO - Need help :P
- [ ] Android Listener to know when press volume button and after dispatch event to react
- [X] Create interface to change volume with Android
- [X] Enable Airplay button when is possible
