1

我在 React Native 应用程序中使用react-native-paper的 Appbar 组件。后退点击工作正常,但应用程序图标没有出现检查屏幕截图。请帮我 。

<Appbar.Header style={{ backgroundColor: '#fff' }}>
         <Appbar.BackAction onPress={this._goBack} />
         <Appbar.Content
                 title="Login" />
</Appbar.Header>

在此处输入图像描述

请帮助如何将其转换为后退按钮。我正在关注这篇文章https://callstack.github.io/react-native-paper/appbar-header.html

4

2 回答 2

2

您需要添加

apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"

android/app/build.gradle

(参见react-native-vector-icons

于 2020-10-14T14:24:33.147 回答
1

react native paper 使用 react-native-vector-icons npm 包,您需要使用“react-native link react-native-vector-icons”手动将此包链接到您的 react native paper 项目。这样做并使用“react-native run-android”重新构建您的项目。 反应本机矢量图标

于 2019-11-25T16:23:17.640 回答