How to fix 'net::ERR_CLEARTEXT_NOT_PERMITTED' in flutter

前端 未结 5 1710
情话喂你
情话喂你 2020-12-20 12:49

I have implemented webView in flutter but it is not opening my php website which is on server what I\'m doing wrong.

I am new to flutter and tried webview to integra

5条回答
  •  暖寄归人
    2020-12-20 12:59

    Open the android manifest file (android/app/src/main/AndroidManifest.xml) and add

    android:usesCleartextTraffic="true" to the application tag

    
    

提交回复
热议问题