我有一个csv文件,如下所示。我已经使用react-native-svg-uri来渲染csv文件,但由于某种原因只是渲染。 csv文件的其他部分渲染正常。
以下是csv文件的摘录。
<text id="PAY" font-family="BentonSans-Bold, BentonSans" font-size="20" font-weight="bold" line-spacing="38" fill="#1274B8">
<tspan x="87" y="34">PAY</tspan>
</text>
以下是反应原生代码。
import SvgUri from 'react-native-svg-uri';
<View>
<SvgUri source={require('./logo.svg')} />
</View>
css是否用于原因问题?如何使它工作?
答案 0 :(得分:0)
在此处查看react-native-svg-uri
的来源:https://github.com/matc4/react-native-svg-uri/blob/master/index.js#L90
<Text />
没有案例。为了解决这个问题,你必须分叉并为它添加一个案例:)