body: Container(
decoration: BoxDecoration(
image: DecorationImage(
image: AssetImage("image/loginbg.png"),
fit: BoxFit.cover,
),
),
child: Center(
child: Text('Hello Wolrd', style: TextStyle(fontSize: 22.0, color: Colors.red),),
),
)
网友评论