Тёмный

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

CodeWorm
Подписаться 1,9 тыс.
Просмотров 4,9 тыс.
50% 1

Опубликовано:

 

21 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 11   
@koloksimonasen872
@koloksimonasen872 5 месяцев назад
one of the best tutorials on yt for this rn, good job!
@codeworm7
@codeworm7 5 месяцев назад
Thanks for the appreciation
@Hacker_Solo
@Hacker_Solo 5 месяцев назад
Keep it up will shine IA one day. The best Andriod developer ever see in my life.
@suen-tech
@suen-tech 5 месяцев назад
Thank you
@nguyeny2141
@nguyeny2141 Месяц назад
what extension for well flutter code indent ? It have been on window ? Thank you!
@codeworm7
@codeworm7 Месяц назад
@@nguyeny2141 well you can add prettier and code formatter for that.
@carlosjosepereira4911
@carlosjosepereira4911 Месяц назад
Is there source code available? Could not find in your github. Thanks in advance
@carlosjosepereira4911
@carlosjosepereira4911 Месяц назад
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") ), ], ), ], ), ), ); } }
@ImKaic6
@ImKaic6 5 месяцев назад
I see you used realtime database, in which video did you show it?
@codeworm7
@codeworm7 5 месяцев назад
I will use in the upcoming videos
@codeworm7
@codeworm7 4 месяца назад
Realtime database will be uploaded today
Далее
React Node.js MySQL CRUD Tutorial for Beginners
46:27
Просмотров 310 тыс.
Борщ в стиле высокой кухни!
00:57
DIY Pump Solutions
00:18
Просмотров 1,4 млн
Should you use Bun, Deno etc. instead of Node.js?
7:28
Борщ в стиле высокой кухни!
00:57