2

我正在使用 react-native-paper 库中的复选框,但是当我在组件中渲染该复选框时,屏幕上会出现一个带有十字的奇怪特殊框,如图所示。在此处输入图像描述

这是我的代码:

进口

import { TextInput, Checkbox } from 'react-native-paper';

零件

 <Checkbox
                status={checked ? 'checked' : 'unchecked'}
                onPress={() => { setChecked(!checked); }}
            />
4

1 回答 1

2

https://github.com/oblador/react-native-vector-icons#option-with-gradle-recommended所述

apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"在文件底部添加android/app/build.gradle我解决了同样的问题,现在图标显示正确。

于 2020-03-22T08:32:42.687 回答