mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-04-20 22:13:48 +00:00
fix: update iOS platform version and enable sentence capitalization in chat input fields
This commit is contained in:
parent
cc43f4d198
commit
20171c491f
3 changed files with 3 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
platform :ios, '12.0'
|
||||
platform :ios, '15.5'
|
||||
|
||||
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
|
||||
|
||||
|
|
|
|||
|
|
@ -727,6 +727,7 @@ class _ChannelChatScreenState extends State<ChannelChatScreen> {
|
|||
inputFormatters: [
|
||||
Utf8LengthLimitingTextInputFormatter(maxBytes),
|
||||
],
|
||||
textCapitalization: TextCapitalization.sentences,
|
||||
decoration: InputDecoration(
|
||||
hintText: context.l10n.chat_typeMessage,
|
||||
border: OutlineInputBorder(
|
||||
|
|
|
|||
|
|
@ -281,6 +281,7 @@ class _ChatScreenState extends State<ChatScreen> {
|
|||
inputFormatters: [
|
||||
Utf8LengthLimitingTextInputFormatter(maxBytes),
|
||||
],
|
||||
textCapitalization: TextCapitalization.sentences,
|
||||
decoration: InputDecoration(
|
||||
hintText: context.l10n.chat_typeMessage,
|
||||
border: const OutlineInputBorder(),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue