feat: Dismiss keyboard on scroll in iOS

This commit is contained in:
Sorunome 2021-08-28 17:36:23 +02:00
commit 15aa228581
2 changed files with 13 additions and 0 deletions

View file

@ -268,6 +268,9 @@ class ChatView extends StatelessWidget {
),
reverse: true,
controller: controller.scrollController,
keyboardDismissBehavior: PlatformInfos.isIOS
? ScrollViewKeyboardDismissBehavior.onDrag
: ScrollViewKeyboardDismissBehavior.manual,
childrenDelegate: SliverChildBuilderDelegate(
(BuildContext context, int i) {
return i == controller.filteredEvents.length + 1