简体   繁体   中英

How to add Bottom Padding in Page View in Flutter

我想添加底部填充以在页面视图中显示页面,如此图像

Put your page in a Padding element and then set edge insets only for bottom:

new Padding(
    padding: const EdgeInsets.only(bottom: 20),
    child: *Active Page View Here*
),

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM