Flutter GetX Task Todo App Tutorial | App from Scratch Part 1

Flutter GetX Task Todo App Tutorial | App from Scratch Part 1

Fullstack School

2 года назад

45,995 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Dzakwan Nashif Putera Hermawan
Dzakwan Nashif Putera Hermawan - 23.10.2023 12:49

Thank you and wow this is soo nice, you're da best, you explaining the method one by one and I understand with it. Nice and thanks for making this good tutorial, I haven't found someone who explain their method as well as this. Once again thank you for your hard work I really appreciate it 👏👏.

Ответить
I W
I W - 02.04.2023 10:10

I think TaskRepository should be under task folder in services instead of being in storage folder? what you guys think?

Ответить
Protocol43
Protocol43 - 13.01.2023 17:26

colors

const purple = Color(0xFF756BFC);
const pick = Color(0xFFF1A39A);
const deepPink = Color(0xFFFA63C6);
const green = Color(0xFF41CF9F);
const yellow = Color(0xFFEEC38E);
const lightBlue = Color(0xFF42A5F5);
const blue = Color(0xFF2B60E6);

Ответить
NumCube
NumCube - 21.12.2022 14:10

icons:
const personIcon = 0xe491;
const worklcon = 0xe11c;
const movieIcon = 0xe40f;
const sporticon = 0xe4dc;
const travelIcon = 0xe071;
const shoplcon = 0xe59c;

Ответить
NumCube
NumCube - 21.12.2022 14:07

Colors:
import 'package:flutter/material.dart';

const purble = Color(0xFF756BFC);
const pink = Color(0xFFF1A39A);
const deepPink = Color(0xFFFA63C6);
const green = Color(0xFF41CF9F);
const yellow = Color(0xFFEEC38E);
const lightBlue = Color(0xFF42A5F5);
const blue = Color(0xFF2B60E6);

Ответить
019_DEEP DAS
019_DEEP DAS - 23.09.2022 08:31

CODE FOR THE "extension.dart" file is below ⬇

import 'package:flutter/material.dart';
import 'package:get/get.dart';

extension PercentSized on double {
double get hp => (Get.height * (this / 100));
double get wp => (Get.width * (this / 100));
}

extension ResponsiveText on double {
double get sp => (Get.width / 100 * (this / 3));
}

extension HexColor on Color {
/// String is in the format "aabbcc" or "ffaabbcc" with an optional leading "#".
static Color fromHex(String hexString) {
final buffer = StringBuffer();
if (hexString.length == 6 || hexString.length == 7) buffer.write('ff');
buffer.write(hexString.replaceFirst('#', ''));
return Color(int.parse(buffer.toString(), radix: 16));
}

/// Prefixes a hash sign if [leadingHashSign] is set to `true` (default is `true`).
String toHex({bool leadingHashSign = true}) => '${leadingHashSign ? '#' : ''}'
'${alpha.toRadixString(16).padLeft(2, '0')}'
'${red.toRadixString(16).padLeft(2, '0')}'
'${green.toRadixString(16).padLeft(2, '0')}'
'${blue.toRadixString(16).padLeft(2, '0')}';
}

Ответить
Ragna Brone
Ragna Brone - 30.08.2022 03:30

Awesome

Ответить
Athir
Athir - 28.08.2022 21:43

do I have to subscribe to your patreon to complete this course??

Ответить
Cyclone gamer and coder
Cyclone gamer and coder - 06.08.2022 10:06

pls

Ответить
Cyclone gamer and coder
Cyclone gamer and coder - 06.08.2022 10:05

can you give me the code of extension file
]

Ответить
Shiva Krishnan
Shiva Krishnan - 30.07.2022 21:53

can i know the missing code missed out in the extensions file?? anyone can help me

Ответить
Belajar Flutter
Belajar Flutter - 26.07.2022 07:00

Can you please explain the difference between provider and repository... Thank you

Ответить
Amit Baderia
Amit Baderia - 22.04.2022 15:02

Very bad audio. Instead of putting bad audio videos, you should have directly said that - refer to my Udemy course

Ответить
Mubarak A R
Mubarak A R - 28.02.2022 22:42

Can you please explain the difference between provider and repository... Thank you

Ответить
Rizki Juliansyah
Rizki Juliansyah - 28.02.2022 09:30

where i can get the pict of mindmaster of getX?

Ответить
Mars X
Mars X - 26.02.2022 19:33

hello, can you give a link to the getX design pattern document you are looking at? Anyway wonderful work bro. ❤️

Ответить
Shanney 22
Shanney 22 - 20.02.2022 07:38

Are these codes only for ios or android as well?

Ответить
rener entalhes
rener entalhes - 09.02.2022 01:21

hi teacher, could you explain to me why use the operator ?? in dart code?

Ответить
Nguyễn Sĩ Thiện
Nguyễn Sĩ Thiện - 06.01.2022 06:03

Bloc please

Ответить
ABHISHEK GIRI
ABHISHEK GIRI - 04.01.2022 20:42

Which flutter version you use in this project?

Ответить