have searched all of RUclips ur the only person with this great work... the rest use image picker and only create a database of one image and url. plus some names . but this wat u did is the real deal..
please can u update this app to work with the current dependencies and the new flutter version, with the new firebase...it will be of great help for sure...
you can store all the songs in list , and maintain one counter to point to the song in list, when you click on next song button, call the same songplay screen and pass the list and pointer.
have searched all of RUclips ur the only person with this great work... the rest use image picker and only create a database of one image and url. plus some names
. but this wat u did is the real deal..
Very useful👍🏻👍🏻
Thanks bro 🙏🙏
Thank you very much. Subscribed. Please post more videos for flutter !!!!
Thanks 🙏🙏
Great 😇✌️
Thanks bro 🙏🙏
Poli man 😘
part 2 needed
please can u update this app to work with the current dependencies and the new flutter version, with the new firebase...it will be of great help for sure...
Thanks for this video
Welcome Bro !!!
thanks if u put my wish into consideration
Great tutorial, but... How can I add notifications...?? I liked to do it 😁😁.. Thanks bro 👍
👏
Thanks bro 🙏🙏
Thanks for this video! Is it possible to do this using Amazon Amplify?
Nice video... how can I implement Previous and Next button in the app??
how to stop an audio playing when you press back and stop it playing in background when move to another screen by using flutter audio player.pls help
i just updated app, you can get whole source code from here !!!
github.com/gaurangkeluskar22/Basic-Music-Player-App
What I do to play next song when clicking button on songplay screen
you can store all the songs in list , and maintain one counter to point to the song in list, when you click on next song button, call the same songplay screen and pass the list and pointer.
@@borntohtml say dart language please
thank you so much !
Welcome Bro !!
Execution failed for task ':music_player:compileDebugKotlin'. error
Thanks very helpful. But can you make one for Localhost sql?
I'll try
Hi, I am trying to implement JavaScript project into Flutter. Can you please help me in that.? I don't know anything in JavaScript
42:00
did you know how to delete added song?
hello song url set as null in firebase (no internet problem)
i just updated app, you can get whole source code from here !!!
github.com/gaurangkeluskar22/Basic-Music-Player-App
what the code to fetch the list of data from document
I used Future Builder to fetch all data from firestore.
you can get whole code from here :-
tech2bropro.blogspot.com/2020/05/how-to-create-music-player-app-in-flutter-using-firebase-cloud-firestore-firebase-storage-and-music-player-plugin-by-tech2bropro.html
This is the little code snippet :-
Future getdata() async {
QuerySnapshot qn =
await Firestore.instance.collection('songs').getDocuments();
return qn.documents;
}
@override
Widget build(BuildContext context) {
return FutureBuilder(
future: getdata(),
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return Center(
child: CircularProgressIndicator(),
);
} else {
return ListView.builder(
itemCount: snapshot.data.length,
itemBuilder: (context, index) {
return Card(
child: InkWell(
onTap: () => Navigator.push(
context,
MaterialPageRoute(
builder: (context) => Songpage(
title:snapshot.data[index].data["song_name"],
artist:snapshot.data[index].data["artist_name"],
url:snapshot.data[index].data["song_url"],
image:snapshot.data[index].data["image_url"]))),
child: Padding(
padding: EdgeInsets.all(20.0),
child: Text(
snapshot.data[index].data["song_name"],
style: TextStyle(
fontSize: 20.0,
),
),),),
elevation: 10.0,
);},
);}
});