Home
last modified time | relevance | path

Searched refs:getWindowSoftInputModeMode (Results 1 – 5 of 5) sorted by relevance

/expo/packages/@expo/config-plugins/src/android/__tests__/
H A DSoftwareKeyboard-test.ts1 import { getWindowSoftInputModeMode } from '../WindowSoftInputMode';
3 describe(getWindowSoftInputModeMode, () => {
5 expect(getWindowSoftInputModeMode({ android: { softwareKeyboardLayoutMode: 'pan' } })).toBe(
8 expect(getWindowSoftInputModeMode({ android: { softwareKeyboardLayoutMode: 'resize' } })).toBe(
13 expect(getWindowSoftInputModeMode({})).toBe('adjustResize');
17 getWindowSoftInputModeMode({
/expo/packages/@expo/config-plugins/build/android/
H A DWindowSoftInputMode.js6 exports.getWindowSoftInputModeMode = getWindowSoftInputModeMode;
37 app.$[ANDROID_WINDOW_SOFT_INPUT_MODE] = getWindowSoftInputModeMode(config);
40 function getWindowSoftInputModeMode(config) { function
H A DWindowSoftInputMode.d.ts6 export declare function getWindowSoftInputModeMode(config: Pick<ExpoConfig, 'android'>): string;
H A DWindowSoftInputMode.js.map1getWindowSoftInputModeMode","_config$android","_MAPPING$value","value","android","softwareKeyboard…
/expo/packages/@expo/config-plugins/src/android/
H A DWindowSoftInputMode.ts26 app.$[ANDROID_WINDOW_SOFT_INPUT_MODE] = getWindowSoftInputModeMode(config);
30 export function getWindowSoftInputModeMode(config: Pick<ExpoConfig, 'android'>) { function