【发布时间】:2021-03-11 02:21:01
【问题描述】:
我需要向用户提要显示每个项目都包含图表的项目。 现在我使用 react-native-svg-charts:
<LineChart
style={{ height: 150, position: 'relative', left: -20 }}
data={data}
curve={shape.curveNatural}
svg={{ stroke: chartColor1, strokeWidth: 5 }}
contentInset={{ top: 20, bottom: 20 }}
showGrid={false}
numberOfTicks={0}
key={props.id}
>
但是当我加载超过 50 个项目时,应用程序的性能下降到 10-15 fps。
我认为这是因为页面上有许多 SVG。您认为我应该使用哪种解决方案来避免这种情况?
【问题讨论】:
标签: android ios react-native svg mobile