Тёмный

Complete Flutter App Course | Flutter Tutorial for Beginners | Error Handling (10) 

TECHIE BLOSSOM
Подписаться 35 тыс.
Просмотров 3,3 тыс.
50% 1

#MovieApp #ProApp #IndustryStandard #Plan #Develop #Publish #EndtoEnd #ErrorHandling
Join this channel to support the channel and get access to perks:
/ @techieblossom
I am bringing a series of videos for you to teach you how to build an Industry Standard Flutter Application from scratch. I am also putting up companion articles.
Timeline
01:28 Type of Errors
03:52 AppError
07:03 Error Widget
12:02 Generic Error Widget
14:39 Error Handling in Tabs
In this series, you’ll learn basic as well as advanced topics in Flutter. At the end of this series, you’ll have successfully built an industry-standard application with very good UI and a scalable code-base with some excellent coding practices.
In this video, I'll show you how to handle errors from API and network.
If you liked the video, then please show me by hitting the like button for the video and show some love by giving star 🌟 on Github.
github.com/Tec...
━ ━ ━ ━ ━ ━ ━ ━ ━ ━━ ━ ━ ━ ━ ━ ━ ━ ━ ━
Other Videos
━ ━ ━ ━ ━ ━ ━ ━ ━ ━━ ━ ━ ━ ━ ━ ━ ━ ━ ━
➨ Neumorphism, Gradient Chart & Custom Shape End Drawer - • Sidebar Animation & Na...
➨ Google Stadia App Concept - • Flutter UI | Stadia Ap...
➨ Local Events App - • Flutter UI | Local Eve...
➨ Sidebar animation and navigation - • Sidebar Animation & Na...
➨ Despicable Me Characters App - • Flutter UI | Despicabl...
➨ Flight Ticket App Playlist - • Flight List UI | BLOC ...
➨ Video Game Messaging App - • Video Game Message App...
➨ Bloc Tutorials - • State Management | Fou...
━ ━ ━ ━ ━ ━ ━ ━ ━ ━━ ━ ━ ━ ━ ━ ━ ━ ━ ━
Support!!
━ ━ ━ ━ ━ ━ ━ ━ ━ ━━ ━ ━ ━ ━ ━ ━ ━ ━ ━
Helps me in carving out more time for tutorials
❤️ From India and don't want to pay commission - There are many ways you can connect with me (Website, Twitter, Comments)
❤️ Buy me a Coffee www.buymeacoff...
or here is my
❤️ PayPal account paypal.me/techieblossom
━ ━ ━ ━ ━ ━ ━ ━ ━ ━━ ━ ━ ━ ━ ━ ━ ━ ━ ━
Follow me! Show your support towards the channel:
━ ━ ━ ━ ━ ━ ━ ━ ━ ━━ ━ ━ ━ ━ ━ ━ ━ ━ ━
🎯 Medium - / prateeksharma
🎯 Twitter - / sharmaprateek7
🎯 Website - www.techieblos...
🎯 Github - github.com/Tec...
SUBSCRIBE FOR MORE VIDEOS LIKE THIS
LIKE & SHARE
THANKS FOR WATCHING!🙏🙏🙏

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

 

21 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 28   
@GuillermoAmpie
@GuillermoAmpie 4 года назад
Awesome!. The error handling pattern that you presented here is superb!. In past times, I looked for something like this in Android and never found anything close to your approach!. You should make a standalone video for this error handling architecture to showcase it!. It is worth it! Happy day!
@dalestewart
@dalestewart 3 года назад
Another excellent tutorial implementing the logic for edge cases regarding error handling for all case scenarios.👍
@TechieIndia
@TechieIndia 3 года назад
At 7:30, instead of passing that bloc, we can also directly access the instance of BlocProvider.of(context). Isn't it?
@TechieIndia
@TechieIndia 3 года назад
I implemented it and yes, we can do that.
@prashanthongal1641
@prashanthongal1641 4 года назад
Thanks for your amazing tutorials
@user-ds6qh2um6v
@user-ds6qh2um6v 4 года назад
Great series!💕
@jatinrajput5504
@jatinrajput5504 4 года назад
Keep it up ☺️ superb
@techieblossom
@techieblossom 4 года назад
Thanks 😊
@raymondmichael4987
@raymondmichael4987 4 года назад
We're really luck to have people like you in this world. One thing, how about using the same approach, production ready app but with offline-first strategy which require network at first for authentication, while applicable CRUD operation can be done offline. Preferably using, GetX. Another series will be great after this
@techieblossom
@techieblossom 4 года назад
Basically, CRUD operations can not be done offline unless you are doing evrything in local database. Because data should not be lost. So even if you do CRUD offline, at some point of time you should put data on server. I will do a tutorial on GETX later. In this app also, you will learn about local database when the favorite movies video will come out.
@raymondmichael4987
@raymondmichael4987 4 года назад
@@techieblossom, didn't see that coming!! :) such a speedy reply; How about using firebase, I heard it handle offline. If we create a todo app, which can store locally when offline and sync to cloud when online; If that makes sense. Greetings from Tanzania 🇹🇿
@raymondmichael4987
@raymondmichael4987 4 года назад
Excited for the GetX series, you explain things super awesomely
@techieblossom
@techieblossom 4 года назад
Yeah. Firebase does many things out of the box. Other than todo, I will try to accomodate firebase in this app itself or any other series
@raymondmichael4987
@raymondmichael4987 4 года назад
@@techieblossom, thanks. You don't know how much I'm relieved yo hear that from you
@Shumi_Desu
@Shumi_Desu 3 года назад
Hi, do we have to add new errors in AppErrorType enum for all the libraries and create class that implements Exception to be thrown? For a large project, will it become a long list of enums? For example for image_picker or any library that we use. And is it possible to pass a string of text to display in error widget to make it dynamic? Thanks
@techieblossom
@techieblossom 3 года назад
Yes, those are just types. You can define strings which will be dynamic. Types will not be too much in my opinion.
@wiaamkareem6186
@wiaamkareem6186 3 года назад
itis a good way to handle errors, thanks a lot. but one thing that confuses me is what if there is a system error or an error we forget to handle
@techieblossom
@techieblossom 3 года назад
Any global error also can be thrown as AppErrorType.something..
@PabloGeokar
@PabloGeokar 4 года назад
Very good thank you
@nzubechianyanwu5251
@nzubechianyanwu5251 4 года назад
This is so cool and awesome 👌
@er.rameshvlogs6953
@er.rameshvlogs6953 4 года назад
Sir please upload next part!!
@techieblossom
@techieblossom 4 года назад
Uploaded
@ericchua3492
@ericchua3492 4 года назад
how many episodes in total?
@nanangkho9378
@nanangkho9378 4 года назад
What theme VSCode ?
@praveenapplee8946
@praveenapplee8946 4 года назад
Next video when bro?
@techieblossom
@techieblossom 4 года назад
Unable to do this week. Targetting 2 videos next week.
Далее
Catch Exceptions in Flutter Like Never Before!
9:02
Просмотров 21 тыс.
Watching This On Loop ♾️
00:32
Просмотров 10 млн
I reverse engineered Next to find what they are hiding
29:48
Git Tutorial For Dummies
19:25
Просмотров 1,2 млн
You might not need useEffect() ...
21:45
Просмотров 165 тыс.
Flutter Basics by a REAL Project
25:42
Просмотров 507 тыс.
This Folder Structure Makes Me 100% More Productive
24:36
All Rust features explained
21:30
Просмотров 315 тыс.