state-management Questions
2
Solved
Flutter riverpod is not notifying the Consumer on the state change when the StateNotifier's type is List, while the same implementation works just fine for other types.
here, I provided a minimal r...
Panpsychist asked 9/8, 2021 at 12:12
2
Solved
I'm kinda confused, I have been looking into state management with flutter recently and I was wondering what happens if a custom stateful widget is placed in a stateless widget, let's say widgetA (...
Inland asked 10/7, 2020 at 12:53
2
Solved
Is there a way to access an instance of a provided ".family" change notifier (which has already been instantiated, passing the right parameters) without passing the parameters again?
IN P...
Second asked 19/11, 2020 at 18:21
2
Solved
I am new to Angular and this question might be very broad. But I am interested in learning more on State management usage. Recently one of our project implemented state management using NGXS librar...
Crunode asked 24/9, 2018 at 1:45
1
here is the situation -
my flutter app dashboard screen has two separate list
pageView on top and
List item
i have a bloc named dashboard_bloc and dashboard_event with two separate event to get ...
Sandglass asked 23/5, 2020 at 5:40
1
I have a Store:
class Store {
user!: User;
constructor() {
makeObservable(this, {
user: observable,
setUser: action
});
}
setUser = (user: User | undefined) => this.user = user;
}
An...
Sonyasoo asked 26/4, 2021 at 12:39
1
When using Clean Architecture with flutter we see a diagram similar to this:
(I wrote MobX package as an example, but it could be anything like BLoC, Redux...)
I may have a problem with this diagr...
Winthorpe asked 18/3, 2021 at 11:28
0
Hello developers I'm working with Ionic and Vue+Vuex in this app, but eventually, I can't access my state from my getters for some reason.
As usually the management state is settled for that purpos...
Ecthyma asked 12/3, 2021 at 10:56
3
Solved
I'm trying to preserve the state of a widget, so that if I temporarily remove the stateful widget from the widget tree, and then re-add it later on, the widget will have the same state as it did be...
Abnormal asked 29/12, 2019 at 2:33
4
Solved
I'm refactoring my app to GetX state management for less boilerplate code.
I make the Controller and the API provider (code below).
But when I want to refresh the data (Manually too) it won't chang...
Mcbrayer asked 7/10, 2020 at 21:10
5
Solved
I am quite new to this framework and working on state management using provider package where I come across ChangeNotifierProvider and ChangeNotifierProvider.value, but I am unable to distinguish t...
Faliscan asked 3/8, 2019 at 6:24
1
Solved
Context: Here's page that has a TabView to navigate between tabs all of these tabs are making use of flutter_bloc (version 6.0.1).
Problem: When swiping to to any tab, the state is not being preser...
Rosanarosane asked 2/8, 2020 at 16:43
1
Solved
Context
I come from Redux and I am learning the BLoC pattern for global state management. I am having troubles defining where should I store values as properties inside the BLoC class, and when I s...
Decameter asked 11/8, 2020 at 13:44
2
I know there have been certain questions on state management in flutter, but none of them seemed to solve my use case.
Recently I was building an app based on E-commerce and encountered this real n...
Mold asked 8/7, 2020 at 6:26
1
I'm kind of new to the concept of NGRX and state management as I came from back-end development and whenever i see and heard the term state management one thing comes in my mind is CQRS.
Well, some...
Subalpine asked 23/6, 2020 at 20:27
3
Solved
As suggested here in the Mobx documentation I have created multiple stores in the following manner:
class bankAccountStore {
constructor(rootStore){
this.rootStore = rootStore;
}
...
class auth...
Represent asked 27/1, 2019 at 22:31
3
Solved
I have a TabBarView with 3 TabBar. When I'm in tab 1 I do something, then I navigate to tab 2 when I come back to tab 1 I want to the previous state of tab 1 will not change.
How can I achieve thi...
Modest asked 23/4, 2020 at 9:24
1
Solved
I have a screen widget and a custom widget. I want to change a value of the screen widget when a button of my custom widget is pressed. Just to show an example;
This is MyScreen widget which uses ...
Maffa asked 3/4, 2020 at 11:57
2
Solved
I am trying to implement custom logout solution for my application, where no matter where user currently is, once the Logout button is clicked, app will navigate back to Login page.
My idea was, t...
Joliejoliet asked 7/2, 2020 at 6:58
1
We're developing SPA using Angular 7 in a combination with NGRX. We have migrated to NGRX a few months ago to use mainly for authentication and session data. After that, we have started movin...
Lutes asked 15/1, 2020 at 21:32
2
My Home.js component just doesn't seem to see the dispatch function at all. Do you guys know why? I'm kinda new to redux style state management stuff in redux.
I keep getting the error "TypeError:...
Crepuscular asked 26/9, 2019 at 22:52
0
[Disclaimer: I come from frontend, react/angular world where i use redux/ngrx for state management.]
Is there some standard way of managing application state in WPF applications?
I’ve seen some u...
Snuffer asked 12/12, 2019 at 20:25
1
Solved
I'm new to Flutter and provider package so any assistance would be great, so the issue I have my main.dart file which is as follows:
void main() => runApp(
MaterialApp(
debugShowCheckedMode...
Townley asked 4/12, 2019 at 9:27
2
Here I have two pages first is called BSP_signup_terms page and the second is Bsp_Service_page. when I am on BSP_signup_terms on that page I have to select some checkbox based on the selected check...
Compass asked 15/10, 2019 at 6:18
5
Solved
I recently started migrating things from jQ to a more structured framework being VueJS, and I love it!
Conceptually, Vuex has been a bit of a paradigm shift for me, but I'm confident I know what i...
Flounder asked 20/10, 2016 at 22:51
© 2022 - 2025 — McMap. All rights reserved.