flutter background image
Widget build(BuildContext context) { return MaterialApp( title: 'Welcome to Flutter', home: Container( decoration: BoxDecoration( image: DecorationImage( image: AssetImage("images/logo.png"), fit: BoxFit.cover)), child: Scaffold(),),);