Flutter with django back end
when taking a build in flutter you should add <uses-permission android :name ="android.permission.INTERNET" /> this in adoroidmanifest xml in android and then take the build First add the http package, save the pubspec.yaml file. dependencies : flutter : sdk : flutter http : ^0.13.4 # then flutter pub get use serializers in django and seprate views for the serializers Future< void > signup (BuildContext context) async { String username = userNAmeController . text ; String email = emailController . text ; String password = passwordController . text ; String rePassword = re_passwordController . text ; // Validate input if (username. isEmpty || email. isEmpty || password. isEmpty || rePassword. isEmpty ) { ScaffoldMessenger. of (context).showSnackBar( SnackBar (content: Text ( "Please fill in all fields" )), ); return ; } if (password != rePassword) { ScaffoldMessenger. of (context).sho...