Hi great video nice this is package help me a lot but, I want to ask if there is a package for a date like Hijri date to use it to display the date( intl package good but I could not use it for Hijri date) thanks
This is great , it supports all platforms , android,iOS,web ,macos and windows too, I have used it in my project . BTW Will you please suggest me any plugin that implements webview in windows application?
the curly braces should be there as the onPressed event handler returns void (however, there shouldn't be an arrow) - Good point about the async though, await is invalid otherwise
Is it possible to get the following behavior with this package or any other package: For Flutter Web, is it possible to get a weblink hint in the bottom-left of the browser when you hover over a button or a component that is supposed to open a weblink? Thanks!
Hello bro, I have a problem with this plug in. For instance if a user does not have mobile data(internet connection) but he still switch it on and he presses a button that calls the function to launch the url. It just shows a background with white screen. How can I show a pop up screen saying no internet connection
Open Pubspec.yaml then below the dependencies: dependencies: flutter: sdk: flutter url_launcher: ^5.7.10 now go to dart file and import import 'package:url_launcher/url_launcher.dart'; and now you can paste this working code RaisedButton( onPressed: () async => {await launch("tel: +019")}, child: Text("Open Flutter"), )