some portions of the screen is not working (tested on 2 real devices and an emulator)
(屏幕的某些部分不起作用(在2个真实设备和一个模拟器上进行了测试))
there's no hidden widgets that might catch the gestures silently
(没有隐藏的小部件可能会默默地捕获手势)
i don't even know what to search for now :\
(我什至不知道现在要搜索什么:\)
checked my code but haven't done any wierd custom thing and all widgets are OEM widgets
(检查了我的代码,但未做任何奇怪的自定义操作,所有小部件均为OEM小部件)
illustrated the app here
(在此说明了该应用程序)
any ideas ?
(有任何想法吗 ?)
this is the widget that contains all buttons and widgets that are having the issue :
(这是包含所有有问题的按钮和小部件的小部件:)
ListView.builder(
padding: EdgeInsets.fromLTRB(7.0, 7.0, 7.0, 7.0),
controller: _scrollController,
itemCount: 1,
scrollDirection: displayWidth > 600 ? Axis.horizontal : Axis.vertical,
itemBuilder: (context, index) {
return ListBody(
mainAxis: displayWidth > 600 ? Axis.horizontal : Axis.vertical,
children: <Widget>[
Padding(
padding: EdgeInsets.fromLTRB(0.0, 5.0, 0.0, 5.0),
),
content_firstCard(displayWidth, displayHeight), // explanation
Padding(
padding: EdgeInsets.fromLTRB(
0.0,
0.0,
displayWidth > 600 ? 20.0 : 0.0,
displayWidth > 600 ? 0.0 : 20.0),
),
content_secondCard2(displayWidth, displayHeight), // flutter
Padding(
padding: EdgeInsets.fromLTRB(
0.0,
0.0,
displayWidth > 600 ? 20.0 : 0.0,
displayWidth > 600 ? 0.0 : 20.0),
),
content_thirdCard(displayWidth, displayHeight),
Padding(
padding: EdgeInsets.fromLTRB(
0.0,
0.0,
displayWidth > 600 ? 20.0 : 0.0,
displayWidth > 600 ? 0.0 : 20.0),
),
content_forthCard(displayWidth, displayHeight),
Padding(
padding: EdgeInsets.fromLTRB(
0.0,
0.0,
displayWidth > 600 ? 20.0 : 0.0,
displayWidth > 600 ? 0.0 : 20.0),
),
]);
});
ask by Leo Ma translate from so