fix: Latest sent message sinks when clicked on Mobile (#4989)

This commit is contained in:
ggurdin 2025-12-30 14:20:29 -05:00 committed by GitHub
parent 7e9ec32ab6
commit eef9a56275
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -356,7 +356,8 @@ class MessageSelectionPositionerState extends State<MessageSelectionPositioner>
AppConfig.toolbarMenuHeight +
4.0;
return bottomOffset > _screenHeight!;
return bottomOffset >
(_screenHeight! + MediaQuery.paddingOf(context).bottom);
}
double get spaceBelowContent {