【发布时间】:2022-01-07 12:03:17
【问题描述】:
每当我运行应用程序时,主屏幕最多只显示 5 秒,并且没有点击,我导航到另一个页面。 其中第二页是商品详情页,第一页商品按分类显示。
itemBuilder: (context, index) => ItemCard(
product: products[index],
press: () => Navigator.push(
context,
MaterialPageRoute(
builder: (context) => DetailsScreen(
product: products[index],
),
)),
)),
),
),
],
);
}
}```
错误:
The following assertion was thrown while handling a gesture:
Assertion failed: file:///C:/src/flutter/flutter/packages/flutter/lib/src/widgets/navigator.dart:4842:12
!_debugLocked
is not true
【问题讨论】:
标签: android flutter dart navigator