【问题标题】:In react-native-gifted-chat how do I remove the line above the Composer component?在 react-native-gifted-chat 中,如何删除 Composer 组件上方的行?
【发布时间】:2020-01-30 03:49:06
【问题描述】:

如何删除这条线?它似乎不是 Composer 组件的一部分。

【问题讨论】:

    标签: react-native react-native-gifted-chat


    【解决方案1】:

    在项目的Github issues 中获得帮助。

    import { GiftedChat, InputToolbar } from 'react-native-gifted-chat';
    
    <GiftedChat
      renderInputToolbar={(props) => (
        <InputToolbar {...props} containerStyle={{borderTopWidth: 0}} />
      )}
      // ... all the other props.
    />
    

    【讨论】: