Use MySQL

Use MySQL

You can upload and share everything relating to use MySQL for database in Flutter. You also can download it, if it’s useful to you.

https://www.coderzheaven.com/2019/09/28/flutter-datatable-mysql/

CRUD MYSQL

Error: Bad state: Insecure HTTP is not allowed by platform:

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

<uses-permission android:name="android.permission.INTERNET" /> <!-- This Line -->
<application
        android:name="io.flutter.app.FlutterApplication"
        android:label="receipt"
        android:usesCleartextTraffic="true" <!-- This Line -->
        android:icon="@mipmap/ic_launcher">

izzad Ramli

Comments are closed.