Building a Todo Application (CRUD) In Flutter With Redux - Part 1

preview_player
Показать описание
In this tutorial, we take a look at a more advanced example of Redux in Flutter.

Feel free to donate:
ETH: 0x03247265dd5242605bD2FA3c40fb3b70d9e3D685

Рекомендации по теме
Комментарии
Автор

I'm glad you're back :) I love your videos. Please take your time to acknowledge the fact that you are helpful to a lot of people. Your happiness is priority.

kickeddroid
Автор

You are such a great teacher. I had difficulties understanding redux with flutter, but your explanation is very easy to understand. Thank you so much.
[subscribed and liked the video]

sajadrahmdel
Автор

I am starting the tutorial today. lets see which changes we have in 3 years :)

msalih
Автор

really your explanation is more clear than other., Thank for video in redux. and please make more video in redux.

satishkumar-qqdf
Автор

For anyone fairly new to the Dart language (me). At 4:23 the named constructor uses an initializer list (colon after the constructor name). This is used to initialize the final member variable. Since the constructor has no body, the line ends with ;
I had a bit of a hard time wrapping my head around this at first. Just wanted to pass down the knowledge

arturorojas
Автор

After using Redux in ReactJS and React Native, I felt like, Flutter Redux is the most complicated of them all...

p
Автор

Thanks for the video and looking forward for the next one in the series. It will be great if you could extend the todo redux app to plugin into firebase.

AnilDhulappanavar
Автор

I really like the tutorials man. Much appreciated! I do have one suggestion; what if you added a comment to go with the code block you just pasted.

jasonrbodie
Автор

Hey Tensor, your videos are really helpful. Can you make a video about Login-Registration system from rest API using redux?

humayunrahi
Автор

Very good video! thanks a lot, bro :D

guilhermelopes
Автор

Great tutorial. I wonder why AddItemWidget is to be stateful ?

nskeip
Автор

Hi Tensor, first of all I want to give you a big thank you for making these tutorials, you teach so well. Thanks for taking the time.

I have a doubt. Imagine my Item has like 10 attributes. Would I need to pass every argument to AddItem? or could I just pass the model itself (in my case I dont need the id++;). I think it doesn't make sense that every time I need to create one item, I must create 10 variables independently etc.
The ItemModel is immutable, maybe should I create and empty model and make use of the copyWith function everytime I want to set an attribute to the item?

I hope you can understand my problem, its a bit hard to explain myself in a foreign language. Thank you so much

raulmabe
Автор

Is the _ViewModel required to use the flutter redux package, or can the store be accessed directly in widgets using the dispatch method?

fooked
Автор

Just one question though, are view models made separate for each widget that need a view model or can I just create one view model and import it with all properties I need from the store?

joefresh
Автор

One question, why is there double full-stop before add in Reducer Class? ..addAll(state) and ..add(Item.id, ....)

thegeektrench
Автор

dear tensor modifiable means you cannot change butt when you try to remove item from list then it can be changed then what is the purpose of modifiable?

ZeeshanAli-junc
Автор

great content. My question is do you still use flutter_redux in 2020 or you found a better state management solution.

g-luu
Автор

Please Explain:
AppState.initialState() : items = List.unmodifiable(<Item>[]);
I am new to it

deepaklather
Автор

Greate tutorials !!! But can you make a tutorial like this but intergrated flutter_flux ? I'd been working around with react redux, react router flux but I'm just new to dark language, just working on it for few days. I see this can a big competitor of React Native

phianhtranhoang
Автор

How is ItemList a stateless widget - doesnt state (the array) changed over time in this widget?

thekjpacino