https://github.com/florent37/flutter_audio_widget
Play an audio on flutter can be as simple as display an image ! Just add a widget into the tree
https://github.com/florent37/flutter_audio_widget
asset audio audios file flutter local media mp3 network pause play player playlist seek stateful stateless tree wav widget
Last synced: 2 months ago
JSON representation
Play an audio on flutter can be as simple as display an image ! Just add a widget into the tree
- Host: GitHub
- URL: https://github.com/florent37/flutter_audio_widget
- Owner: florent37
- License: other
- Created: 2020-04-28T13:53:13.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-29T11:36:14.000Z (about 5 years ago)
- Last Synced: 2025-05-12T22:16:25.581Z (2 months ago)
- Topics: asset, audio, audios, file, flutter, local, media, mp3, network, pause, play, player, playlist, seek, stateful, stateless, tree, wav, widget
- Language: Dart
- Homepage: https://pub.dev/packages/audio_widget
- Size: 42.7 MB
- Stars: 14
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# audio_widget
**Now included directly into AssetsAudioPlayer**
please use https://github.com/florent37/Flutter-AssetsAudioPlayer
[](https://github.com/florent37/Flutter_audio_widget)
(this widget does not display anything)
Play an audio on flutter can be as simple as display an image ! Just add a widget into the tree
```dart
Audio.assets(
path: "assets/audios/country.mp3",
play: true, //AudioWidget does not maintain the play state
child: ...
)
```