-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Awesome #5
Comments
Hi @gedw99 , |
What I have described above is related for situations when update occurs in child and propagates to parent. Widget view(BuildContext ctx, Dispatch<Msg> dispatch, Model model) {
return DarteaConditionalWidget(
model: model,
condition: (m)=>m.isUpdated == true,
builder: (ctx, m) => Text('${m.name}'),
);
}
|
This is a great idea and I like it a lot. In fact I was hoping there would be such a package one day for flutter, mostly because I came to flutter from a F# background hence functional approach is really appealing to me. Anyway, I will start playing with the package, great job for creating this! |
Hi @stt106 , I'm also got into FP-trap through F#, and now can't force myself to do classic OOP. |
Am loving this approach.
The fractal self similar aspect is create.
One concern I have is about performance. When a data change occurs is it updating all of the widgets , even though only one widget is affected by the data change ? I am not sure.
The text was updated successfully, but these errors were encountered: