We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6dc2db commit 1d24a66Copy full SHA for 1d24a66
lib/widgets/message_list.dart
@@ -251,10 +251,10 @@ class ScrollToBottomButton extends StatelessWidget {
251
@override
252
Widget build(BuildContext context) {
253
return ValueListenableBuilder<bool>(
254
+ valueListenable: visibleValue,
255
builder: (BuildContext context, bool value, Widget? child) {
256
return (value && child != null) ? child : const SizedBox.shrink();
257
},
- valueListenable: visibleValue,
258
// TODO: fix hardcoded values for size and style here
259
child: IconButton(
260
tooltip: "Scroll to bottom",
0 commit comments