We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
下面的代码可以直接调用调试,第一次调用test one和test two都会显示,但是正常应该只显示test two。再次调用只显示test one不显示test two。项目中也是类似的问题,不显示后面的dialog。这个问题再4.9.7之后的小版本都有,4.9.6版本正常
static void _showDialog() { SmartDialog.showLoading<void>(msg: "test one"); SmartDialog.dismiss<void>(status: SmartStatus.loading); SmartDialog.show<void>( clickMaskDismiss: false, builder: (_) { Widget child = Container( height: 80, width: 180, color: Colors.black, alignment: Alignment.center, child: const Text( 'test two', style: TextStyle(color: Colors.white), ), ); return child; }, displayTime: const Duration(milliseconds: 2000), keepSingle: true, backDismiss: false, ); }
The text was updated successfully, but these errors were encountered:
dependencies: flutter_smart_dialog: ^4.9.7+7
Sorry, something went wrong.
process #191,#192
fba973b
xdd666t
No branches or pull requests
版本信息
描述bug/需求
下面的代码可以直接调用调试,第一次调用test one和test two都会显示,但是正常应该只显示test two。再次调用只显示test one不显示test two。项目中也是类似的问题,不显示后面的dialog。这个问题再4.9.7之后的小版本都有,4.9.6版本正常
问题demo
The text was updated successfully, but these errors were encountered: