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

outdated

A flutter plugin to stream 360° videos on iOS and Android

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(
                  "ENTER_YOUR_360_VIDEO_URL_HERE");
            },
            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 and Android

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on video_player_360