enhanced_url_launcher_web 2.0.17 copy "enhanced_url_launcher_web: ^2.0.17" to clipboard
enhanced_url_launcher_web: ^2.0.17 copied to clipboard

Platformweb

Web platform implementation of enhanced_url_launcher for launching a URL. Supports web, phone, SMS, and email schemes.

example/lib/main.dart

// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

/// App for testing
class MyApp extends StatefulWidget {
  /// Default Constructor
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const Directionality(
      textDirection: TextDirection.ltr,
      child: Text('Testing... Look at the console output for results!'),
    );
  }
}
0
likes
140
pub points
45%
popularity

Publisher

verified publishermasewo.net

Web platform implementation of enhanced_url_launcher for launching a URL. Supports web, phone, SMS, and email schemes.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0, BSD-3-Clause (LICENSE)

Dependencies

enhanced_url_launcher_platform_interface, flutter, flutter_web_plugins

More

Packages that depend on enhanced_url_launcher_web