url_launcher_web 2.0.18 copy "url_launcher_web: ^2.0.18" to clipboard
url_launcher_web: ^2.0.18 copied to clipboard

unlisted

Web platform implementation of url_launcher

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!'),
    );
  }
}
copied to clipboard
35
likes
0
points
3.61M
downloads

Publisher

verified publisherflutter.dev

Weekly Downloads

2024.08.27 - 2025.03.11

Web platform implementation of url_launcher

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, flutter_web_plugins, url_launcher_platform_interface

More

Packages that depend on url_launcher_web