v1.1.1expand_tap_area
手动扩展小部件的点击区域,而不会改变其大小或布局。类似于 iOS 开发中的 hitTest。
60喜欢 3.2万近 30 天下载140Pub 分数
AndroidiOSWebmacOSWindowsLinux
手动扩展小部件的点击区域,而不会改变其大小或布局。类似于 iOS 开发中的 hitTest。
{"sdk":"flutter"}{"sdk":"flutter"}以下为英文项目原文快照,最新内容请访问 GitHub。
Manually expand the tap area of a widget without changing its size or layout. Similar with the hitTest in iOS development.
In the Human Interface Guidelines, Apple recommends a minimum target size of 44 x 44 px.
In the Android Material Design Guidelines, it’s suggested that touch targets should be at least 48 x 48 dp.
Inspired by issue
ExpandTapWidget(
onTap: () {},
tapPadding: EdgeInsets.all(25.0),
child: smallWidget(),
),
| https://raw.githubusercontent.com/malikwang/expand_tap_area/master/images/1.png | https://raw.githubusercontent.com/malikwang/expand_tap_area/master/images/2.png |