Blurred Decoration Image in Flutter

前端 未结 4 829
眼角桃花
眼角桃花 2020-12-25 11:35

I have the background of my app set like so:

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return new Material         


        
4条回答
  •  悲&欢浪女
    2020-12-25 12:27

    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(...),
        ),           
    );
    

提交回复
热议问题