Build Cupertino Flutter Chat App with Firebase in 4 HOURS!

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

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

  • @somnathdas8922
    @somnathdas8922 Год назад +3

    Bro, I follow along with your tutorials it's amazing to learn, and you beautifully explain everything, I already completed 2hr of your video. Thanks a lot.👍💙🙏

  • @aaronmoroney2066
    @aaronmoroney2066 Год назад +1

    Awesome faizal

  • @somnathdas8922
    @somnathdas8922 Год назад +3

    Bro you did great job.

  • @abderrazzakzahir168
    @abderrazzakzahir168 Год назад +2

    a big thank-you

  • @manikandanv2608
    @manikandanv2608 Год назад

    after making the ports for emulators...you are adding some integrations in plist file.....what we should do for the same if we are trying in android..(am saying about the code you done at 2:21:00 to 2:23:00 time)

    • @keynotecast
      @keynotecast  Год назад

      the config for android is simpler. when connecting to emulator, the ip is 10.0.2.2 and not localhost, you have to do the following:
      final localHost = Platform.isAndroid ? '10.0.2.2' : 'localhost';
      adapt the android/app/build.gradle to match the min sdk version and add the following on the dependencies (if not added automatically with flutter fire):
      dependencies {
      implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
      implementation platform('com.google.firebase:firebase-bom:29.0.0')
      def multidex_version = "2.0.1"
      implementation "androidx.multidex:multidex:$multidex_version"
      implementation 'com.google.firebase:firebase-auth'
      }
      on /main/android/build.gradle file add the following in dependencies :
      dependencies {
      classpath 'com.android.tools.build:gradle:4.1.0'
      classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
      classpath 'com.google.gms:google-services:4.3.10'
      }
      on android/app/src/main/AndroidManifest.xml, you need to bind the android:networkSecurityConfig, the xml is located in android/app/src/main/res/xml, check this repo and copy the xml and the respective configs in AndroidManifest
      github.com/fpatelm/flutter-firebase-mobx
      mote: the versions might be outdated, use the latest versions

  • @ishaqsaeed
    @ishaqsaeed Год назад +1

    thank you bro

  • @MrCamdere
    @MrCamdere Год назад

    Bro thank u for this tut can i build this application with the current version of Flutter ?

    • @keynotecast
      @keynotecast  Год назад +1

      Yes you can, if there is any API changes, follow flutter and Firebase official documentation

  • @MamadouBa-gg2hu
    @MamadouBa-gg2hu Год назад +1

    which version of flutter did you use in this tutorial

    • @keynotecast
      @keynotecast  Год назад +1

      Flutter 3.3.8 • channel stable
      Tools • Dart 2.18.4 • DevTools 2.15.0

    • @MamadouBa-gg2hu
      @MamadouBa-gg2hu Год назад +1

      @@keynotecast thanks you

    • @keynotecast
      @keynotecast  Год назад

      welcome

  • @devcodes7760
    @devcodes7760 3 месяца назад

    Which programming stidio is this please, android studio?

    • @keynotecast
      @keynotecast  3 месяца назад +1

      Visual studio code

    • @devcodes7760
      @devcodes7760 3 месяца назад

      @@keynotecast thanks bro, can I run this course with Android device

  • @fathiyyahhemdan
    @fathiyyahhemdan 4 месяца назад

    can you share with us the souce code please? thank you

  • @hagumimanaeric7071
    @hagumimanaeric7071 Год назад

    you really made it hard for us to get the mock json data.

    • @keynotecast
      @keynotecast  Год назад +2

      You can get the mock data by running the docker:
      *_docker run -p 5000:5000 -d keynotecast/mock-data_*
      check the description for mode details

    • @hagumimanaeric7071
      @hagumimanaeric7071 Год назад +1

      @@keynotecast You did a great Job 👏 , I love your tutorials.

    • @keynotecast
      @keynotecast  Год назад

      @@hagumimanaeric7071 thank you for your feeddback

  • @MPRGyanStudio888
    @MPRGyanStudio888 Год назад +1

    Bro instagram full app tutorial

  • @capitalreaders5218
    @capitalreaders5218 Год назад

    bro how to use mock data

    • @keynotecast
      @keynotecast  Год назад

      Check the video description for how to start the mock data node js using docker

  • @a1305jeyaram
    @a1305jeyaram Год назад +1

    source code please

    • @keynotecast
      @keynotecast  Год назад

      In progress, will announce in the future videos

    • @somnathdas8922
      @somnathdas8922 Год назад

      Please sir I need sources code.🙏

  • @judeette1594
    @judeette1594 Год назад

    2:51:00

    • @keynotecast
      @keynotecast  Год назад

      hello, do you have any question related to this section of the video?