Тёмный
No video :(

3.4 - Flutter Checkbox and CheckboxListTile Widget - Flutter Crash Course 

Coding With T
Подписаться 79 тыс.
Просмотров 11 тыс.
50% 1

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

 

25 авг 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 19   
@ithaershihabaion1634
@ithaershihabaion1634 2 месяца назад
Best Lectures i have ever seen.🥰
@CodingwithT
@CodingwithT 2 месяца назад
Thank you 🤩
@akowechristian9520
@akowechristian9520 Год назад
Great tutorials, thanks for taking your time to teach us.
@CodingwithT
@CodingwithT Год назад
You welcome 😁
@mostafaemon5467
@mostafaemon5467 10 месяцев назад
Your videos are extremely helpful. You are a good teacher. ❤
@CodingwithT
@CodingwithT 10 месяцев назад
Thank you 😊
@gigamgamboa828
@gigamgamboa828 8 месяцев назад
got it. love you :P
@sale7680
@sale7680 Год назад
Bravo
@CodingwithT
@CodingwithT Год назад
Thank you 😊
@amcheachamroeun2716
@amcheachamroeun2716 Год назад
Can you provide source code to this part I cannot catch it. I am new to it and really like the way you are teaching.
@CodingwithT
@CodingwithT Год назад
I'll try to share the code ASAP please mail me at support@codingwithT.com ☺️. Thank you for your kind words 😎🤠.
@sofsof2009
@sofsof2009 Год назад
How to pass the data from the checkboxlistetile ?thanks for the tuto
@CodingwithT
@CodingwithT Год назад
There are multiple ways and also it depends weather you have one or multiple checkboxes. Here is the one way... Create a bool variable and make it true when onChanged Event called in Checkbox or to toggle you can use isChecked = !isChecked; With this you can easily toogle with values and pass the final value when form submitted
@mdnadimulislam4106
@mdnadimulislam4106 2 года назад
Brother teach us to create vpn app a to z🙏🙏plz
@CodingwithT
@CodingwithT 2 года назад
Great suggestion bro. Actually I'm about to start an e-commerce app but after that I'll create vpn app. No worries 🤠😊
@user-ui4mh1vl2b
@user-ui4mh1vl2b Год назад
sir y can u show entire code sir.......
@CodingwithT
@CodingwithT Год назад
It's visible bro
@thecseacademy
@thecseacademy Год назад
class CustomCheckBox extends StatefulWidget { final bool tristate, value; final String text; const CustomCheckBox( {Key? key, required this.tristate, required this.value, required this.text}) : super(key: key); @override State createState() => _CustomCheckBoxState(tristate, value, text); } class _CustomCheckBoxState extends State { final bool tristate; bool? checkBoxValue; final String text; _CustomCheckBoxState(this.tristate, this.checkBoxValue, this.text); @override Widget build(BuildContext context) { return Column( children: [ Row( children: [ Checkbox( tristate: tristate, value: checkBoxValue, onChanged: (value) { setState(() { checkBoxValue = value; }); }), Text( text, style: const TextStyle(color: Colors.blueAccent), ), ], ), ], ); } } here is my assignment @codingwithtea. Please share your feedback
@CodingwithT
@CodingwithT Год назад
I'll check that shortly. 😃✌️
Далее
Flutter Basics by a REAL Project
25:42
Просмотров 457 тыс.
Avaz Oxun - 10 yillik yubiley konsert dasturi 2023
2:52:33
Top 30 Flutter Tips and Tricks
6:50
Просмотров 550 тыс.
No Code App Development is a Trap
9:31
Просмотров 219 тыс.
Top 10 CSS One Liners That Will Blow Your Mind
13:34
Просмотров 943 тыс.
How ChatGPT Built My App in Minutes 🤯
8:28
Просмотров 2,3 млн