Flutter Firestore Tutorial 2024 | Firestore CRUD (Create, Read, Update, Delete) | Firebase Flutter

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

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

  • @koloksimonasen872
    @koloksimonasen872 7 месяцев назад +1

    one of the best tutorials on yt for this rn, good job!

    • @codeworm7
      @codeworm7  7 месяцев назад

      Thanks for the appreciation

  • @Hacker_Solo
    @Hacker_Solo 8 месяцев назад +1

    Keep it up will shine IA one day.
    The best Andriod developer ever see in my life.

  • @suen-tech
    @suen-tech 8 месяцев назад +2

    Thank you

  • @nguyeny2141
    @nguyeny2141 4 месяца назад +1

    what extension for well flutter code indent ? It have been on window ? Thank you!

    • @codeworm7
      @codeworm7  4 месяца назад +1

      @@nguyeny2141 well you can add prettier and code formatter for that.

  • @ImKaic6
    @ImKaic6 7 месяцев назад +1

    I see you used realtime database, in which video did you show it?

    • @codeworm7
      @codeworm7  7 месяцев назад +1

      I will use in the upcoming videos

    • @codeworm7
      @codeworm7  7 месяцев назад +1

      Realtime database will be uploaded today

  • @carlosjosepereira4911
    @carlosjosepereira4911 3 месяца назад +2

    Is there source code available? Could not find in your github. Thanks in advance

    • @carlosjosepereira4911
      @carlosjosepereira4911 3 месяца назад +2

      Here an initial code, so that people can follow along. Buttons in Portuguese.
      import 'package:flutter/material.dart';
      void main() {
      runApp(MyApp());
      }
      class MyApp extends StatelessWidget {
      @override
      Widget build(BuildContext context) {
      return MaterialApp(
      title: 'Firestore CRUD',
      home: HomeScreen(),
      );
      }
      }
      class HomeScreen extends StatefulWidget {
      @override
      State createState() => HomeScreenState();
      }
      class HomeScreenState extends State {
      @override
      Widget build(BuildContext context) {
      return Scaffold(
      appBar: AppBar(
      title: Text(
      "Firestore",
      style: TextStyle( fontWeight: FontWeight.w600 ),
      ),
      ),
      body: Padding(
      padding: EdgeInsets.symmetric(horizontal: 25),
      child: Column(
      crossAxisAlignment: CrossAxisAlignment.start,
      children: [
      Text("Nome"),
      TextField(),
      SizedBox(height: 10),
      Text("Email"),
      TextField(),
      SizedBox(height: 10),
      Text("Celular"),
      TextField(),
      SizedBox(height: 35),
      Row(
      mainAxisAlignment: MainAxisAlignment.center,
      children: [
      ElevatedButton(
      onPressed: (){},
      child: Text("Criar")
      ),
      SizedBox(width: 10),
      ElevatedButton(
      onPressed: (){},
      child: Text("Ler")
      ),
      ],
      ),
      SizedBox(height: 10),
      Row(
      mainAxisAlignment: MainAxisAlignment.center,
      children: [
      ElevatedButton(
      onPressed: (){},
      child: Text("Atualizar")
      ),
      SizedBox(width: 10),
      ElevatedButton(
      onPressed: (){},
      child: Text("Apagar")
      ),
      ],
      ),
      ],
      ),
      ),
      );
      }
      }