Unhandled Exception: Bad state: Insecure HTTP is not allowed by platform: http://192.168.43.71/flutter-login-signup/dropdown.php code example

Example: flutter unhandled exception: bad state: insecure http is not allowed by platform:

For Android:
This behavior may be omitted following migration guide: https://flutter.dev/docs/release/breaking-changes/network-policy-ios-android.

or... Just add in android/app/src/main/AndroidManifest.xml:

android:usesCleartextTraffic="true" to  also dont forget to take INTERNET PERMISSION:

 


        android:icon="@mipmap/ic_launcher">
For iOS:
Allow insecure/HTTP requests globally across your application on iOS, you can add this to your ios/Runner/info.plist under the main dictionary definition:

NSAppTransportSecurity

        NSAllowsArbitraryLoads
        

Be warned that you will need to have an explanation for Apple's review team when enabling this, otherwise your app will get rejected on submission.

Thank you

Tags:

Misc Example