📜  颤动图像大小不起作用 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:56.802000             🧑  作者: Mango

代码示例1
return Container(
      alignment: Alignment.center,// use aligment
      color: Color.fromRGBO(0, 96, 91, 1.0),
      child: Image.asset('assets/images/splash_logo.png',
        height: 150,
        width: 150,
      fit: BoxFit.cover),
    );