I have 2 ImageAssets in my flutter project I want to switch between them depending on action, I am using cubit and states. the image changes after going to another widget and then coming back how can I refresh the widget or do this without a stateful widget
this is my image and I want to switch between the grey one and basic one
indicator:Image.asset(cubit.planeState ? ImageAssets.plane : ImageAssets.planeGrey )),
and this the OnButtonPressed
btnOkOnPress: () {
context.read<RehlatechCubit>().onPlaneStateChanged();
},
Assuming that you have set up the page with cubit.
Psuedo Code
Ensure that your widget to be updated is wrapped in a BlocBuilder