This code should work: ``` widget = ValueListenableBuilder<int>( valueListenable: pure_dart_notifier.listenable, builder: (context, value, child) { return Text('$value'); // Only this text rebuilds }, ) ```
This code should work: