Touch Delay in Framework7 V5

Hi, my app never had any problems with touch delay in Framework7 v4 but I updated to v5 some hours ago and now all clicks have a delay of about 2 sec (forms, buttons, tab-links). It only happened to me?

Check your index.html:

<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui, viewport-fit=cover">

and use WkWebView

Thanks, i read about the change from UIWebView to WkWebview but in my app toolbar not in his place

and router links with < a > don’t work, xcode debug tells me:
Connection to daemon was invalidated. I used cordova-plugin-wkwebview-engine

But with UIWebView and fastclick.js I have no problems.

You advise me to update to WkWebView and try to solve these problems or stay on UIWebView?

You also need to install this plugin cordova-plugin-wkwebview-file-xhr, it has fix for local XHR

I really thank you :slight_smile:, now all works!
If you have any solution for toolbar please tell me please, it seems there is a padding or something else but if I scroll down and pause app (exit but not closing) it fixes :exploding_head:

The toolbar is here:
.app
.views.tabs
.toolbar.tabbar.toolbar-bottom
.view-1
.view-2

Try this CSS rule:

html {
  height: 100vh;
  width: 100vw;
}
1 Like

Yesss :top::top:
Thank you again, you do a really nice job with F7 :smiley: and sorry for my poor skills :sweat_smile: