We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to set volume using flutter_radio plugin but getting below error.
Exception has occurred. MissingPluginException (MissingPluginException(No implementation found for method setVolume on channel flutter_radio))
Code snippet is below:
flutter plugin : flutter_radio: ^0.1.7 import 'package:flutter_radio/flutter_radio.dart';
FlatButton( child: Icon(Icons.stop), onPressed: () => FlutterRadio.stop(), ), FlatButton( child: Icon(Icons.volume_off), onPressed: () => FlutterRadio.setVolume(0.0), ), FlatButton( child: Icon(Icons.volume_up), onPressed: () => FlutterRadio.setVolume(0.7), )
The text was updated successfully, but these errors were encountered:
I am trying to set volume using flutter_radio plugin but getting below error. Exception has occurred. MissingPluginException (MissingPluginException(No implementation found for method setVolume on channel flutter_radio)) Code snippet is below: flutter plugin : flutter_radio: ^0.1.7 import 'package:flutter_radio/flutter_radio.dart'; FlatButton( child: Icon(Icons.stop), onPressed: () => FlutterRadio.stop(), ), FlatButton( child: Icon(Icons.volume_off), onPressed: () => FlutterRadio.setVolume(0.0), ), FlatButton( child: Icon(Icons.volume_up), onPressed: () => FlutterRadio.setVolume(0.7), )
it was solved?
Sorry, something went wrong.
Please fix this
I have created a PR to fix this on Android. Here is it 46aedc8
No branches or pull requests
I am trying to set volume using flutter_radio plugin but getting below error.
Exception has occurred. MissingPluginException (MissingPluginException(No implementation found for method setVolume on channel flutter_radio))
Code snippet is below:
flutter plugin : flutter_radio: ^0.1.7
import 'package:flutter_radio/flutter_radio.dart';
FlatButton( child: Icon(Icons.stop), onPressed: () => FlutterRadio.stop(), ),
FlatButton( child: Icon(Icons.volume_off), onPressed: () => FlutterRadio.setVolume(0.0), ), FlatButton( child: Icon(Icons.volume_up), onPressed: () => FlutterRadio.setVolume(0.7), )
The text was updated successfully, but these errors were encountered: