Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

- We have fixed the textinputs hiding behind on-screen keyboard.
Copy link
Copy Markdown
Contributor

@MxKevinBeqo MxKevinBeqo May 22, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@saurabhchavan1711 Let's also add a section for ### Fixes here please since in this branch we're using this format.


### Changes

- Migrated from react-native-push-notification to @notifee/react-native for better new architecture compatibility and enhanced push notification features
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode|fontScale"
android:launchMode="singleTask"
android:screenOrientation="user"
android:windowSoftInputMode="stateHidden"
android:windowSoftInputMode="adjustPan"
android:exported="true">
<intent-filter>
<action android:name="com.mendix.mendixnative.action.START"/>
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/production/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode|fontScale"
android:launchMode="singleTask"
android:screenOrientation="user"
android:windowSoftInputMode="stateHidden"
android:windowSoftInputMode="adjustPan"
android:exported="true">
<intent-filter>
<action android:name="com.mendix.mendixnative.action.START" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class MainActivity : AppCompatActivity(), DefaultHardwareBackBtnHandler, LaunchS
preferences = AppPreferences(applicationContext)
devAppPreferences = getPreferences(MODE_PRIVATE)

window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE)
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN)

setupHomeViewModel()
setupNavigation()
Expand Down