如何设置背景图像抖动?

时间:2020-05-03 14:35:19

标签: flutter flutter-container flutter-scaffold

我最近开始学习Flutter,我想添加背景图片,并在上面添加两个扁平按钮,但是我做不到,我在代码中添加了背景图片,但是我无法使用不明白这个问题。有人可以帮我吗?

    void main() {
      return runApp(
        MaterialApp(
          debugShowCheckedModeBanner: false,
          home: Scaffold(
            backgroundColor: Colors.transparent,
            appBar: AppBar(
              title: Text('Ani & genny',
                  style: TextStyle(
                    fontFamily: 'Pacifico',
                    color: Colors.white,
                  )),
              backgroundColor: Colors.red,
            ),
            body: MyApp(),
          ),
        ),
      );
    }

    class MyApp extends StatelessWidget {
      void navigateToPage() {
        print('Button pressed!!!!');
      }

      @override
      Widget build(BuildContext context) {
        return Center(
          child: Column(
            children: <Widget>[
              SizedBox(
                height: 50,
              ),
              Container(
                decoration: BoxDecoration(
                  image: DecorationImage(
                image: AssetImage("images/Ani.png"),
                fit: BoxFit.cover

                ),
                ),

              ),
              FlatButton(
                  child: Image.asset(
                    'images/li.png',
                    height: 120,
                    width: 120,
                  ),
                  onPressed: () {
                    navigateToPage();
                  }),
                ),
        ],
      ),
    );
  }
}

2 个答案:

答案 0 :(得分:1)

这里是在图像上放置按钮的示例代码。您可以使用“定位”小部件将其放置在所需的任何位置。

@override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Stack(
        children: <Widget>[
           Image.network(
              'https://picsum.photos/250?image=9',
           ),
           FlatButton(
              child: Text("Submit"),
              onPressed: () {
                  navigateToPage();
               }),
        ],
     ),
    );
  }
}

您可以在Codepen上运行此代码here

答案 1 :(得分:0)

首先用容器强奸你的中心。

Container(
  decoration:BoxDecoration(
   image:DecorationImage(
     fit:BoxFit.fill
     image: AssetImage("images/Ani.png"),
 )
    )
  child:Center(
  )
)

BoxFit.fill将使图像完全覆盖容器