Размер видео: 1280 X 720853 X 480640 X 360
Показать панель управления
Автовоспроизведение
Автоповтор
one of the best tutorials on yt for this rn, good job!
Thanks for the appreciation
Keep it up will shine IA one day.The best Andriod developer ever see in my life.
Thank you
what extension for well flutter code indent ? It have been on window ? Thank you!
@@nguyeny2141 well you can add prettier and code formatter for that.
I see you used realtime database, in which video did you show it?
I will use in the upcoming videos
Realtime database will be uploaded today
Is there source code available? Could not find in your github. Thanks in advance
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") ), ], ), ], ), ), ); }}
one of the best tutorials on yt for this rn, good job!
Thanks for the appreciation
Keep it up will shine IA one day.
The best Andriod developer ever see in my life.
Thank you
what extension for well flutter code indent ? It have been on window ? Thank you!
@@nguyeny2141 well you can add prettier and code formatter for that.
I see you used realtime database, in which video did you show it?
I will use in the upcoming videos
Realtime database will be uploaded today
Is there source code available? Could not find in your github. Thanks in advance
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")
),
],
),
],
),
),
);
}
}