赞
踩
其实在APP中,抽屉菜单就是当手指在屏幕横向滑动时候,左边屏幕会滑出或者滑入一个View的东西,就像一个抽屉。下面是我在网上找的一个示例图,和现在正跑在我的模拟器上的目标图。
在Android或者IOS上,要实现这种侧滑抽屉空间,可以使用外部库来达到效果,不过Flutter本身已经给我们提供了 Drawer 这个UI组件,来使你更轻松地达到这个效果。
Drawer及UserAccountsDrawerHeader可用属性
| Drawer属性 | 说明 |
| — | — |
| elevation | 背景高度 |
| child | 子组件 |
| semanticLabel | 标签 |
| UserAccountsDrawerHeader属性 | 说明 |
| — | — |
| decoration | 头部装饰 |
| margin | 外边距 默认8.0 |
| currentAccountPicture | 主图像 |
| otherAccountsPictures | 副图像 |
| accountName | 标题 |
| accountEmail | 副标题 |
| onDetailsPressed | 点击监听 |
实现
首先我默认大家已经搭建好了Flutter的环境并已经初步写了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。