skip to Main Content

Android dependency not issue in Flutter Plugin

I am creating a flutter pluggin for a native sdk. So I added the android dependency in the plugin/android/build.gradle file like this android { if (project.android.hasProperty("namespace")) { namespace = "com.xxxxxxx.xxxxxx_sdk" } compileSdk = 34 compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility…

VIEW QUESTION

Am trying to add flutter_inappwebview 6.0.0 my codes has no error but web page is not loading

here is my code class SettingsPage extends StatefulWidget { const SettingsPage({Key? key}) : super(key: key); @override _SettingsPageState createState() => _SettingsPageState(); } class _SettingsPageState extends State { InAppWebViewController? webViewController; @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text("Settings"),…

VIEW QUESTION
Back To Top
Search