/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/Libraries/Utilities/dismissKeyboard.js
22 строки
529 B
Iwo Plaza
Migrate Utilities/dismissKeyboard.js, Utilities/GlobalPerformanceLogger.js & Utilities/SceneTracker.js to use export syntax (#49402)
14 фев 2025, 16:19
14 фев 2025, 16:19
fc6ca26
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ // This function dismisses the currently-open keyboard, if any. 'use strict'; const TextInputState = require('../Components/TextInput/TextInputState').default; function dismissKeyboard() { TextInputState.blurTextInput(TextInputState.currentlyFocusedInput()); } export default dismissKeyboard;