我的图像正在加载,但是延迟了! 这是我在main.dart文件中的代码
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: <Widget>[
Container(
height: 190,
width: 190,
margin: EdgeInsets.only(top: 150),
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("assets/images/***.png"),
)
)
),
Container(
margin: EdgeInsets.only(top: 16),
child: Center(
child: Loading(indicator: BallPulseIndicator(), size: 40.0,color: primaryColor),
),
),
],
),
),
我想如何解决这个问题! 是有问题的问题吗?
谢谢。