video_player_360 0.0.4 copy "video_player_360: ^0.0.4" to clipboard
video_player_360: ^0.0.4 copied to clipboard

outdated

A flutter plugin to stream 360° videos on iOS

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:video_player_360/video_player_360.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('360 Video Player Flutter'),
        ),
        body: Center(
          child: RaisedButton(
            onPressed: () async {
              await VideoPlayer360.playVideoURL(
                  "http://196.192.110.79:1935/test/videoplay/playlist.m3u8");
            },
            child: Text("Click to play Video URL"),
          ),
        ),
      ),
    );
  }
}
23
likes
0
pub points
54%
popularity

Publisher

unverified uploader

A flutter plugin to stream 360° videos on iOS

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on video_player_360