|
发表于 2023-9-1 19:00:46
|
显示全部楼层
你们应该是这样写的
<ListView|children={2,3,4}|
<Img|id=2|children={20}|
<Text|id=20|
<Img|id=3|children={30}|
<Text|id=30|
<Img|id=4|children={40}|
<Text|id=40|
改成下面这种写法就行了
<ListView|children={2,3,4}|
<Layout|id=2|children={20}|
<Img|id=20|children={2a}|
<Text|id=2a|
<Layout|id=3|children={30}|
<Img|id=30|children={3a}|
<Text|id=3a|
<Layout|id=4|children={40}|
<Img|id=40|children={4a}|
<Text|id=4a|
|
|