skip to Main Content

'Flutter/Flutter.h' file not found on iOS 18

When I ran the app on iOS 18 (Device - iPhone 13 Mini), It showed the following error. Flutter/Flutter.h' file not found in file included from /Users/mdsabbirhossain/.pub-cache/hosted/pub.dev/webview_flutter_wkwebview-3.15.0/darwin/webview_flutter_wkwebview/Sources/webview_flutter_wkwebview/FWFURLHostApi.m:5: for the package webview_flutter(webview_flutter_wkwebview in iOS). webview_flutter version - 4.9.0 Flutter version -…

VIEW QUESTION

Flutter controller through signup button is not sending response back to database and also not showing any response in the console too

this is the signup1.dart function which is taking controllers from signup1 to signup2 void navigateToSignup2() { if (emailController.text.isNotEmpty && fullNameController.text.isNotEmpty && phoneNumberController.text.isNotEmpty && passwordController.text.isNotEmpty) { // Passing data from Signup1 to Signup2 Navigator.push( context, MaterialPageRoute( builder: (context) => SignUp2( fullName:…

VIEW QUESTION
Back To Top
Search