-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Closed
flutter/plugins
#2847Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projectc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityc: proposalA detailed proposal for a change to FlutterA detailed proposal for a change to Fluttergood first issueRelatively approachable for first-time contributorsRelatively approachable for first-time contributorsp: url_launcherPlugin to launch external applicationsPlugin to launch external applicationspackageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-webWeb applications specificallyWeb applications specifically
Milestone
Description
Use case
The current plugin supports http,https,mailto
const _mailtoScheme = 'mailto';
static final _supportedSchemes = {'http', 'https', _mailtoScheme};The safari browser in the iPhone can be executed normally using the following code
_launchURL() async {
var url = 'tel:+1-408-555-5555';
//if (await canLaunch(url)) {
await launch(url);
//} else {
//throw 'Could not launch $url';
//}
}Proposal
Add support for the tel and sms scheme links in url_launcher_web, For use in pwa.
prasadsunny1 and shptecheu
Metadata
Metadata
Assignees
Labels
P3Issues that are less important to the Flutter projectIssues that are less important to the Flutter projectc: new featureNothing broken; request for a new capabilityNothing broken; request for a new capabilityc: proposalA detailed proposal for a change to FlutterA detailed proposal for a change to Fluttergood first issueRelatively approachable for first-time contributorsRelatively approachable for first-time contributorsp: url_launcherPlugin to launch external applicationsPlugin to launch external applicationspackageflutter/packages repository. See also p: labels.flutter/packages repository. See also p: labels.platform-webWeb applications specificallyWeb applications specifically