react-native 输入框 被软键盘遮挡 (KeyboardAvoidingView)

本组件用于解决一个常见的尴尬问题:手机上弹出的键盘常常会挡住当前的视图。本组件可以自动根据键盘的高度,调整自身的 height 或底部的 padding,以避免被遮挡。

    
    

 

import React from 'react';
import { View, KeyboardAvoidingView, TextInput, StyleSheet, Text, Platform, TouchableWithoutFeedback, Button, Keyboard  } from 'react-native';

const KeyboardAvoidingComponent = () => {
  return (
    
      
        
          Header
          
          
            

react-native 输入框 被软键盘遮挡 (KeyboardAvoidingView)_第1张图片

 参考链接:

https://www.reactnative.cn/docs/keyboardavoidingview

https://chat.xutongbao.top/ 

你可能感兴趣的:(react,native)