1
0
mirror of https://github.com/git-touch/git-touch synced 2024-12-19 03:33:42 +01:00

fix: do not wait tap callback

This commit is contained in:
Rongjian Zhang 2019-12-27 10:24:15 +08:00
parent 15d8414f36
commit 4b0dae9591

View File

@ -26,9 +26,7 @@ class Link extends StatelessWidget {
splashColor: splashColor:
theme.theme == AppThemeType.cupertino ? Colors.transparent : null, theme.theme == AppThemeType.cupertino ? Colors.transparent : null,
onTap: () async { onTap: () async {
if (onTap != null) { if (onTap != null) onTap();
await onTap();
}
theme.push(context, url); theme.push(context, url);
}, },
), ),