No video

Flutter Tutorial - How To Use Form and TextFormField

  Рет қаралды 47,966

HeyFlutter․com

HeyFlutter․com

Күн бұрын

Пікірлер: 45
@HeyFlutter
@HeyFlutter Жыл бұрын
This might help you :) 👉 12 Week Flutter Training from Newbie to Expert: heyflutter.com Source Code: github.com/JohannesMilke/textformfield_example
@adeelzahid9622
@adeelzahid9622 3 жыл бұрын
To be honest Your tutorials are awesome. very well explained, very appreciated.
@cfcr.8090
@cfcr.8090 2 жыл бұрын
YOU THE BEST! I'm so lucky to have access to your videos thank you so much.
@VladVons
@VladVons 3 жыл бұрын
Soon you will be on top in search engine. Thanks for tut ! It would be good to explain how to initialize TextFormField with a value
@maxgamerov
@maxgamerov Жыл бұрын
TextFormField( controller: TextEditingController() ..text = "my custom value", ...)
@sharpmouse3013
@sharpmouse3013 Жыл бұрын
beautifully explained
@HeyFlutter
@HeyFlutter Жыл бұрын
Thank you, Sharp Mouse! 🙂
@mojtabasaebi6096
@mojtabasaebi6096 2 жыл бұрын
thank you alot again :)
@maxgamerov
@maxgamerov Жыл бұрын
thank you
@HeyFlutter
@HeyFlutter Жыл бұрын
You are welcome, Max Gamero!
@frankeestv3860
@frankeestv3860 3 жыл бұрын
Thank God I have stumbled on your videos, your explanation is awesome. Just what I needed in this time of pandemic with a project at school. I wish you could make a video of register/login using php with mysql database. Thank you and stay cool!
@frankeestv3860
@frankeestv3860 3 жыл бұрын
@@HeyFlutter Thank you!
@amsmart5213
@amsmart5213 3 жыл бұрын
simple and clearly explained.
@RohitSharma-xm7tv
@RohitSharma-xm7tv 3 жыл бұрын
thank you so much sir but please provide english subtitles also, i know this will increase your work but sir this thing will help us. by the you are doing good
@SampathLokuge
@SampathLokuge 3 жыл бұрын
It is there. Just click `CC` button.
@aashisshrestha448
@aashisshrestha448 2 жыл бұрын
Another awesome video from you.
@HeyFlutter
@HeyFlutter 2 жыл бұрын
Thank you, Aashis Shrestha! 🙂
@isiakamfugale3621
@isiakamfugale3621 2 жыл бұрын
Hi Johannes. I have one problem in showing the error message. When I reduce the height of textfield the error message is displayed within textfield but when I keep it's default height things get done but I want to have textfield of a height of 25px, plz help me I stuck here for months.Thanks inadvance.
@IronRacer13
@IronRacer13 3 жыл бұрын
Gran video! Muy claro y bien ilustrativo.
@jasemtechno6218
@jasemtechno6218 3 жыл бұрын
Thanks for these information 🌹
@ezone2726
@ezone2726 3 жыл бұрын
Thank you so much🥳 Also if possible use riverpod in this tutorial🙏🏽
@ezone2726
@ezone2726 3 жыл бұрын
@@HeyFlutter thank you so much Sir❣️ #flutter_mentor #learn_riverpod #happycoding
@fivefootfree
@fivefootfree 3 жыл бұрын
Is there a video that sends text fields ( contact form/customer service) to email? After clicking a submit button.
@Metalmecanicafacilplus
@Metalmecanicafacilplus 2 жыл бұрын
Hola, Qué se recomienda para hacer validaciones de entradas numéricas. ¿Usar textField o usar TextFormField?
@antongrekov7710
@antongrekov7710 2 жыл бұрын
TextFormField y le pones de tipo de teclado numerico
@muhammadanggoran8492
@muhammadanggoran8492 3 жыл бұрын
Sir, do you know how to solve inactive input connection? I've already tried stackoverflow solution but still didn't work yet
@1RRaider
@1RRaider 3 жыл бұрын
Good evening sir..idk if u can support me on this please. My Flutter firebase creates an account even if form is invalid. I.e if password does not match. Please how can I Fix that.
@mehdimeh7750
@mehdimeh7750 2 жыл бұрын
great video thank you
@VladVons
@VladVons 3 жыл бұрын
is it allowed to inherit RaisedButton instead of StatelessWidget ? class MyRaisedButton extends RaisedButton {}
@eldadario7339
@eldadario7339 3 жыл бұрын
wonderful video
@StoreRunDotCom
@StoreRunDotCom 2 жыл бұрын
if (value.length < 4 ) { - The property 'length' can't be unconditionally accessed because the receiver can be 'null'. ALSO onChanged: (value) => setState(() => username = value); - Missing parameter type for 'value'.
@StoreRunDotCom
@StoreRunDotCom 2 жыл бұрын
lol i wanted you to help me figure out whats wrong (PLEASE)
@StoreRunDotCom
@StoreRunDotCom 2 жыл бұрын
there are 2 errors - They are hard to tell because I couldnt highlight them
@peleus66
@peleus66 2 жыл бұрын
@@StoreRunDotCom you cant handle (value). Nullsafety.
@1RRaider
@1RRaider 3 жыл бұрын
Hello sir, please support me on this. I'm working on a school project. So basically the Thing is. After I save the form ......currenstatae!.save(); So I need to send it to the user data to the database. While also send auth data. I have however been able to setup an auth already. Please what patten should I submit the form? Thank u
@mgmyo7066
@mgmyo7066 3 жыл бұрын
Please make Dio or http with complex json
@abdallahboucedraya
@abdallahboucedraya 2 жыл бұрын
I have forms inside PageView, one unique form on each page, and I need to validate them all. how I can achieve that ?
@abdallahboucedraya
@abdallahboucedraya 2 жыл бұрын
@@HeyFlutter thanks
@abdallahboucedraya
@abdallahboucedraya 2 жыл бұрын
@@HeyFlutter I have three forms sperared into three page views and one button to validate thems all, but I get currentState is null for two hidden pages
@kind8735
@kind8735 3 жыл бұрын
Do we still need setState for assigning value to a variable since we now have onSave and formState.save() ?
@kind8735
@kind8735 3 жыл бұрын
@@HeyFlutter Thanks. I've learnt a lot from watching your videos.
Flutter Tutorial - TextField - Deep Dive
23:51
HeyFlutter․com
Рет қаралды 86 М.
Top 10 Widgets every Flutter Developer should know!
10:18
HeyFlutter․com
Рет қаралды 35 М.
مسبح السرير #قصير
00:19
سكتشات وحركات
Рет қаралды 4,1 МЛН
He bought this so I can drive too🥹😭 #tiktok #elsarca
00:22
Elsa Arca
Рет қаралды 16 МЛН
This Dumbbell Is Impossible To Lift!
01:00
Stokes Twins
Рет қаралды 38 МЛН
How to create and validate forms in Flutter
23:10
The Flutter Factory
Рет қаралды 110 М.
Ever thought why We fail as Flutter Developer?
8:19
HeyFlutter․com
Рет қаралды 9 М.
Luma AI's INSANE Video Generator Is Here (Better Than SORA!?)
12:14
#11 - TextField and TextFormField #CodeAndroid #Flutter
12:54
CodeAndroid
Рет қаралды 88 М.
Flutter Form Tutorial | Form Validation & Saving Guide
20:50
Hussain Mustafa
Рет қаралды 2,3 М.
Top 30 Flutter Tips and Tricks
6:50
Flutter Mapp
Рет қаралды 551 М.
React Native vs Flutter in 2024 - Make the RIGHT Choice (Difference Explained)
10:31
Daniel Dan | Tech & Data
Рет қаралды 168 М.
Flutter Firebase Authentication [2024] The Cleanest Way
23:32
HeyFlutter․com
Рет қаралды 146 М.
Flutter Tips to 10x Your Speed
8:04
Flutter Mapp
Рет қаралды 15 М.
How to create Forms in Flutter (Flutter Form Builder Tutorial)
36:36
مسبح السرير #قصير
00:19
سكتشات وحركات
Рет қаралды 4,1 МЛН