How do I stretch an image to fit the whole background (100% height x 100% width) in Flutter?

后端 未结 12 1076
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-01 00:10

I have an image that doesn\'t match the aspect ratio of my device\'s screen. I want to stretch the image so that it fully fills the screen, and I don\'t want to crop any par

12条回答
  •  渐次进展
    2020-12-01 00:43

    I think that for your purpose Flex could work better than Container():

    new Flex(
        direction: Axis.vertical,
        children: [
          Image.asset(asset.background)
        ],
       )
    

提交回复
热议问题