ValueListenableBuilder not triggering when setting the same value in Flutter
In the following Flutter code, a ValueListenableBuilder is used to show a dialog when a ValueNotifier changes. However, when the same value is set again, the dialog is not triggered. ValueNotifier is only notifying listeners when the value changes. The…