Merge pull request 'drag messagelist scrollbar fix' (#159) from scrollfix into trunk

Reviewed-on: cwtch.im/cwtch-ui#159
This commit is contained in:
Sarah Jamie Lewis 2021-08-27 21:59:22 +00:00
commit 7b88415fab
1 changed files with 1 additions and 2 deletions

View File

@ -56,7 +56,6 @@ class _MessageListState extends State<MessageList> {
Text("")), Text("")),
))), ))),
Expanded( Expanded(
child: Scrollbar(
child: Container( child: Container(
// Only show broken heart is the contact is offline... // Only show broken heart is the contact is offline...
decoration: BoxDecoration( decoration: BoxDecoration(
@ -94,7 +93,7 @@ class _MessageListState extends State<MessageList> {
); );
}, },
) )
: null))) : null))
]))); ])));
} }
} }