Open mehdinurzi opened 10 months ago
👋 @mehdinurzi
NOTE: This comment is auto-generated.
Are you sure you have already searched for the same problem?
Some people open new issues but they didn't search for something similar or for the same issue. Please, search for it using the GitHub issue search box or on the official inappwebview.dev website, or, also, using Google, StackOverflow, etc. before posting a new one. You may already find an answer to your problem!
If this is really a new issue, then thank you for raising it. I will investigate it and get back to you as soon as possible. Please, make sure you have given me as much context as possible! Also, if you didn't already, post a code example that can replicate this issue.
In the meantime, you can already search for some possible solutions online! Because this plugin uses native WebView, you can search online for the same issue adding android WebView [MY ERROR HERE]
or ios WKWebView [MY ERROR HERE]
keywords.
Following these steps can save you, me, and other people a lot of time, thanks!
Environment
Device information: nokia 5.3
Description
Hello, I'm using this package, and the issue I'm encountering is that when I want to select an image in the web view mode, I'm forced to click on any part of the screen (any area on the phone's screen) beforehand to be able to see the image on the page. what I mean is that if I want to select an image without clicking on the screen first, the image won't appear on the page. so I have to click on any part of the screen before selecting the image to be able to display it on the page.
Expected behavior: i expecte to display image in screen ,after choosing image by file picker
Current behavior: i doesnt show the image in screen,unless i tap on ant part of screen
Steps to reproduce
import 'package:flutter/material.dart'; import 'package:flutter_inappwebview/flutter_inappwebview.dart'; import 'package:main_app/features/feature_main/presentation/controller/home_controller.dart'; import 'package:get/get.dart';
HomeController homeController=Get.find();
class ServillanceScreen extends StatefulWidget {
const ServillanceScreen({super.key});
@override State createState() => _ServillanceScreenState();
}
class _ServillanceScreenState extends State {
RxDouble _progress=0.0.obs;
late InAppWebViewController inAppWebViewController;
@override
void dispose() {
super.dispose();
homeController.servillanceLoading.value=true;
}
@override Widget build(BuildContext context) {
} }
Images
Stacktrace/Logcat