video_player_web 2.3.4 copy "video_player_web: ^2.3.4" to clipboard
video_player_web: ^2.3.4 copied to clipboard

Platformweb
unlisted

Web platform implementation of video_player.

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
68
likes
150
points
1.94M
downloads

Publisher

verified publisherflutter.dev

Weekly Downloads

2024.07.21 - 2025.02.02

Web platform implementation of video_player.

Repository (GitHub)
View/report issues
Contributing

Topics

#video #video-player

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_web_plugins, video_player_platform_interface, web

More

Packages that depend on video_player_web