Create Music Player app in flutter using Firebase (Cloud_firestore and firebase_storage ) package.

Поделиться
HTML-код
  • Опубликовано: 23 ноя 2024

Комментарии •

  • @thesaulgamespace4539
    @thesaulgamespace4539 2 года назад +3

    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..

  • @gaureshkeluskar9790
    @gaureshkeluskar9790 4 года назад +3

    Very useful👍🏻👍🏻

  • @jiwachhetri7681
    @jiwachhetri7681 4 года назад +2

    Thank you very much. Subscribed. Please post more videos for flutter !!!!

  • @TechgeekPrathik
    @TechgeekPrathik 4 года назад +2

    Great 😇✌️

  • @shaheermubarak
    @shaheermubarak 4 года назад +1

    Poli man 😘

  • @shaheermubarak
    @shaheermubarak 4 года назад +2

    part 2 needed

  • @thesaulgamespace4539
    @thesaulgamespace4539 2 года назад +1

    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...

  • @shubhamrozers
    @shubhamrozers 4 года назад +1

    Thanks for this video

  • @thesaulgamespace4539
    @thesaulgamespace4539 2 года назад +1

    thanks if u put my wish into consideration

  • @kbyo2006
    @kbyo2006 3 года назад

    Great tutorial, but... How can I add notifications...?? I liked to do it 😁😁.. Thanks bro 👍

  • @orangomango
    @orangomango 4 года назад +3

    👏

  • @hardkor3546
    @hardkor3546 3 года назад

    Thanks for this video! Is it possible to do this using Amazon Amplify?

  • @minesoftinnovations
    @minesoftinnovations 4 года назад

    Nice video... how can I implement Previous and Next button in the app??

  • @pravinjyoti5020
    @pravinjyoti5020 4 года назад +2

    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

    • @borntohtml
      @borntohtml  4 года назад +2

      i just updated app, you can get whole source code from here !!!
      github.com/gaurangkeluskar22/Basic-Music-Player-App

  • @shaheermubarak
    @shaheermubarak 4 года назад +2

    What I do to play next song when clicking button on songplay screen

    • @borntohtml
      @borntohtml  4 года назад +1

      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.

    • @shaheermubarak
      @shaheermubarak 4 года назад

      @@borntohtml say dart language please

  • @mmtiktok3869
    @mmtiktok3869 4 года назад +1

    thank you so much !

  • @bhanujha1656
    @bhanujha1656 3 года назад

    Execution failed for task ':music_player:compileDebugKotlin'. error

  • @aliomayrat1707
    @aliomayrat1707 4 года назад +1

    Thanks very helpful. But can you make one for Localhost sql?

  • @flutterapp8656
    @flutterapp8656 4 года назад

    Hi, I am trying to implement JavaScript project into Flutter. Can you please help me in that.? I don't know anything in JavaScript

  • @rakaputra3716
    @rakaputra3716 3 года назад +2

    42:00

  • @freys2515
    @freys2515 4 года назад

    did you know how to delete added song?

  • @shaheermubarak
    @shaheermubarak 4 года назад +1

    hello song url set as null in firebase (no internet problem)

    • @borntohtml
      @borntohtml  4 года назад +1

      i just updated app, you can get whole source code from here !!!
      github.com/gaurangkeluskar22/Basic-Music-Player-App

  • @snehilahuja4251
    @snehilahuja4251 4 года назад +1

    what the code to fetch the list of data from document

    • @borntohtml
      @borntohtml  4 года назад +1

      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,
      );},
      );}
      });