Flutter URL_LAUNCHER and return - flutter

on flutter web , I am using url launcher. A new tab opens , when user close the new tab and return on original tab I want the web page to auto reload
is this possible in flutter web?

Related

How to handle back button on appBar of Scaffold layout in flutter module and navigate to previous page on the host app

I have a question, I have to create a flutter module and integrate it directly into the host app. I want to handle the back button on flutter UI by clicking it and navigating to the previous page on the host app. I use go_router to handle navigation on the module and host app. I have never integrated it. I have no idea to handle the back button it works on the appBar inside the flutter module. In this case, I would like to handle it by method channel or not?
I want to get the solution for the handle back button on the appBar in the flutter module. It must to click and navigate from flutter module and goto previous page on the host app.
I just found a way. After setup the flutter module inside Android or iOS, We can use this code setup inside the AppBar to close the page.
if(Platform.isAndroid){
SystemNavigator.pop();
} else {
exit(0);
}

Flutter - URL Launcher Link widget buttons not showing on target: LinkTarget.self

I open a web page in the application using the url launcher - Link widget, but these buttons are not visible.
This buttons
My codes

Refresh Flutter App bar with out page refresh

I try to create a flutter application UI with the App bar and Bottom sheet. I want to update the app bar item count according to the bottom sheet values. Is there any way to do this?
I want to do it without refresh the page.

Flutter drawer menu open behind flutter_webview_plugin

I am new in flutter i am using flutter_webview_plugin for open my web in flutter application with drawer navigation menu.
But the issue is my drawer menu is behind the flutter_webview
Maybe the flutter_webview load after drawer menu
Check this image this is for issue
If you are opening the link from the Drawer (by clicking on a drawer item), then am guessing you are not closing the Drawer, that is why it is showing on the background,
If so, assign a key to the Scaffold then call key.openEndDrawer() to close the drawer programmatically, before you open the WebView

How to create a custom dialog in flutter?

I'm working on a flutter application, I want to show a dialog above button if clicked as this image:
How can I do it?