I have been trying to integrate a web based product tour/on-boarding plugin which will help a new user to understand the application without any external intervention. I cam across this plugin : https://getuserflow.com/ which works well with html websites, I tried integrating this with flutter web app and it fails to detect any element as flutter doesnt support inspect using chrome for some reason.
Whenever I try to inspect a flutter web app it shows this:

It is almost impossible to inspect individual elements same as we can do on other web apps developed in angular or php.
Is there a way on flutter web to enable web inspect so that the plugin will be supported?
To make Flutter generate the full HTML tree and thus accessibility tree, you have to add SemanticsBinding.instance.ensureSemantics(); after runApp(const MyApp());
I have also seen RendererBinding.instance.ensureSemantics() but not sure what the difference is...
Inspect element works with HTML and CSS files. And flutter converts your dart code to canvas, that's why we can't do inspect element.
And I don't think it is possible as of version 2.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With