Reputation: 1355
i am using just_audi plugin but cannot find the following in their docs
also pause method , resume , buffering progress ..
where could i find these UI's widget
any links or docs most welcome thanks
Upvotes: 0
Views: 186
Reputation: 895
Generally these icons and UI components are included in Material components
The pause icon is like
Icon(Icons.pause) etc...
Here you can find a huge list of icons https://api.flutter.dev/flutter/material/Icons-class.html and also a lot of Material UI components https://docs.flutter.dev/development/ui/widgets/material
Upvotes: 0