react-native-volume-controller
react-native-volume-controller copied to clipboard
Volume Controller for iOS and Android
Invariant Violation: requireNativeComponent: "ReactNativeVolumeController" was not found in the UIManager. This error is located at: in ReactNativeVolumeController (at react-native-volume-controller/index.js:86) in RCTView (at react-native-volume-controller/index.js:91) in SliderVolumeController (at volumeSlider.js:7) in VolumeControlUI (at...
> Task :app:compileReleaseJavaWithJavac FAILED /Users//Documents/Projects/what_the_beep/android/app/src/main/java/com/what_the_beep/MainApplication.java:32: error: cannot find symbol packages.add(ReactNativeVolumeControllerPackage()); ^ symbol: method ReactNativeVolumeControllerPackage() 1 error MainApplication.java: ``` @Override protected List getPackages() { @SuppressWarnings("UnnecessaryLocalVariable") List packages = new PackageList(this).getPackages(); //...
Maybe add a screenshot to the readme. Could help :)
The slider component for the ios is not rendering. There is a problem in your IOS code, `event` does not contain any `nativeEvent` , it directly contains a value. Using...
If so, do you have a sample code? do you have to link files when running under Expo ? Thanks
Hi there, first of all thanks very much for the module. Brilliant work. Would it be possible to modify the module so that the slider width automatically adjusted when a...
In your slider, when updating volume in state, should be parse to float. Line 16: this.setState({volume_value:parseFloat(evt.volume)}); And isn't the listener should be remove when component unmount ? `code componentDidMount() {...