From 20171c491f228ce31b0ef1a09bbe12bcc64d024f Mon Sep 17 00:00:00 2001 From: zjs81 Date: Tue, 20 Jan 2026 22:28:37 -0700 Subject: [PATCH] fix: update iOS platform version and enable sentence capitalization in chat input fields --- ios/Podfile | 2 +- lib/screens/channel_chat_screen.dart | 1 + lib/screens/chat_screen.dart | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ios/Podfile b/ios/Podfile index 69ed111..1cecf97 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -1,4 +1,4 @@ -platform :ios, '12.0' +platform :ios, '15.5' ENV['COCOAPODS_DISABLE_STATS'] = 'true' diff --git a/lib/screens/channel_chat_screen.dart b/lib/screens/channel_chat_screen.dart index 84aeb0a..380c7ce 100644 --- a/lib/screens/channel_chat_screen.dart +++ b/lib/screens/channel_chat_screen.dart @@ -727,6 +727,7 @@ class _ChannelChatScreenState extends State { inputFormatters: [ Utf8LengthLimitingTextInputFormatter(maxBytes), ], + textCapitalization: TextCapitalization.sentences, decoration: InputDecoration( hintText: context.l10n.chat_typeMessage, border: OutlineInputBorder( diff --git a/lib/screens/chat_screen.dart b/lib/screens/chat_screen.dart index a1707b9..079f25d 100644 --- a/lib/screens/chat_screen.dart +++ b/lib/screens/chat_screen.dart @@ -281,6 +281,7 @@ class _ChatScreenState extends State { inputFormatters: [ Utf8LengthLimitingTextInputFormatter(maxBytes), ], + textCapitalization: TextCapitalization.sentences, decoration: InputDecoration( hintText: context.l10n.chat_typeMessage, border: const OutlineInputBorder(),