我想在水平轴上重复图像,并使用“定位”小部件将图像移到左侧或右侧。我用Image.network和Image.asset尝试了一下,但都没有用。
Scaffold(
body: Stack(
children: [
Positioned(
left: -100,
child: Container(
height: MediaQuery.of(context).size.height,
width: 1500,
child: Image.network(
'http://www.testomic.com/public/codepen-assets/img/paralax/foreground.png',
repeat: ImageRepeat.repeatX,
),
),
),
],
),
);
我的代码有什么问题!先感谢您。