Image Scale type center crop on flutter?

后端 未结 4 1037
南方客
南方客 2021-02-05 05:31

I\'m trying to do something similar to centerCrop property from android ImageView. Setting the height of the imageview, and making it crop and align to center, just as centerCro

4条回答
  •  孤独总比滥情好
    2021-02-05 05:57

    new Center(
                      child: Container(
                        child: new Stack(
                          children: [
                            new Image.asset(
                              'assets/images/firebase1.png',
                              width: 100.0,
                              height: 100.0,
                            ),
                          ],
                        ),
                      ),
                    ),
    

提交回复
热议问题