flutter携程项目搜索页面左面leftbuttonclick点击返回跳转到主页面出现错误,黑屏,显示_history.is not empty错误。网上查找一个原因是因为flutter路由不能再statefulwidget和statelesswidget之间跳转
child: SearchBar(
city: '',
hideLeft: widget.hideLeft,
defaultText: widget.keyword ?? '',
hint: widget.hint ?? SEARCH_BAR_DEFAULT_TEXT,
leftButtonClick: () {
Navigator.pop(context);
},
onChanged: _onTextChange,
speakClick: _jumpToSpeak,
inputBoxClick: () {},
rightButtonClick: () {},
),
路由跳转出现错误:'package:flutter/src/widgets/navigator.dart': Failed assertion: line 5083 pos 12: '_history.isNotEmpty': is not true.
还没有解决