在 react-native-gifted-chat 中,如何删除 Composer 组件上方的行?

In react-native-gifted-chat how do I remove the line above the Composer component?

如何删除此行?它似乎不是 Composer 组件的一部分。

在项目的 Github issues 中得到了帮助。

import { GiftedChat, InputToolbar } from 'react-native-gifted-chat';

<GiftedChat
  renderInputToolbar={(props) => (
    <InputToolbar {...props} containerStyle={{borderTopWidth: 0}} />
  )}
  // ... all the other props.
/>