-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AND-147] Fix keyboard not closing when opening attachment picker men…
…u and make this behaviour customizable. (#5506) * [AND-147] Ensure keyboard is closed when opening attachments menu. * [AND-147] Add StreamKeyboardBehaviour to CHANGELOG.md. --------- Co-authored-by: PetarVelikov <[email protected]>
- Loading branch information
1 parent
731832d
commit 8e0ed84
Showing
5 changed files
with
86 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...mpose/src/main/java/io/getstream/chat/android/compose/ui/theme/StreamKeyboardBehaviour.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright (c) 2014-2024 Stream.io Inc. All rights reserved. | ||
* | ||
* Licensed under the Stream License; | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://github.com/GetStream/stream-chat-android/blob/main/LICENSE | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.getstream.chat.android.compose.ui.theme | ||
|
||
/** | ||
* Class holding configuration for different keyboard behaviours. | ||
* | ||
* @param closeKeyboardOnAttachmentPickerOpen If true, the keyboard will be closed when the attachment picker is opened. | ||
*/ | ||
public data class StreamKeyboardBehaviour( | ||
val closeKeyboardOnAttachmentPickerOpen: Boolean, | ||
) { | ||
|
||
public companion object { | ||
|
||
/** | ||
* Builds the default keyboard behaviour. | ||
* | ||
* @return A [StreamKeyboardBehaviour] instance holding the default configuration. | ||
*/ | ||
public fun defaultBehaviour(): StreamKeyboardBehaviour { | ||
return StreamKeyboardBehaviour(closeKeyboardOnAttachmentPickerOpen = true) | ||
} | ||
} | ||
} |