I have the background of my app set like so:
class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return new Material
All the above answers are correct, I'll reply to @user123456 here since I can't comment yet.
can i make the BoxDecoration image clickeble – user123456
Just wrap the whole Container with a GestureDetector
GestureDetector( onTap: () {...}, child: Container( ... decoration: BoxDecoration(...), ), );