replay_kit_launcher 1.0.0 copy "replay_kit_launcher: ^1.0.0" to clipboard
replay_kit_launcher: ^1.0.0 copied to clipboard

PlatformiOS

A flutter plugin of the launcher used to open RPSystemBroadcastPickerView for iOS

example/lib/main.dart

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

import 'package:replay_kit_launcher/replay_kit_launcher.dart';

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

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

class _MyAppState extends State<MyApp> {

  @override
  void initState() {
    super.initState();
  }

  void launch() {
    // Please fill in the name of the Broadcast Extension in your project, which is the file name of the `.appex` product
    ReplayKitLauncher.launchReplayKitBroadcast('BroadcastDemoExtension');
  }

  void finish() {
    // Please fill in the CFNotification name in your project
    ReplayKitLauncher.finishReplayKitBroadcast('ZGFinishBroadcastUploadExtensionProcessNotification');
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('ReplayKit Launcher example'),
        ),
        body: Center(
          child: Container(
            padding: const EdgeInsets.symmetric(horizontal: 40.0),
            child: ListView(
              children: [
                Padding(padding: const EdgeInsets.only(top: 50.0)),
                Text('Only support iOS (12.0 or above)'),
                Padding(padding: const EdgeInsets.only(top: 20.0)),
                Text('You should create a new `Broadcast Upload Extension` Target in your iOS `Runner` project first, and use this plugin to launch the Extension by `RPSystemBroadcastPickerView`',
                  style: TextStyle(
                    fontSize: 11.0,

                  ),
                ),
                Padding(padding: const EdgeInsets.only(top: 20.0)),
                Container(
                  padding: const EdgeInsets.all(0.0),
                  decoration: BoxDecoration(
                    borderRadius: BorderRadius.circular(12.0),
                    color: Color(0xff0e88eb),
                  ),
                  width: 240.0,
                  height: 50.0,
                  child: CupertinoButton(
                    child: Text('Launch ReplayKit',
                      style: TextStyle(
                        color: Colors.white
                      ),
                    ),
                    onPressed: launch,
                  ),
                ),
                Padding(padding: const EdgeInsets.only(top: 20.0)),
                Container(
                  padding: const EdgeInsets.all(0.0),
                  decoration: BoxDecoration(
                    borderRadius: BorderRadius.circular(12.0),
                    color: Color(0xff0e88eb),
                  ),
                  width: 240.0,
                  height: 50.0,
                  child: CupertinoButton(
                    child: Text('Finish ReplayKit',
                      style: TextStyle(
                        color: Colors.white
                      ),
                    ),
                    onPressed: finish,
                  ),
                )
              ],
            )
          )
        ),
      ),
    );
  }
}
10
likes
130
pub points
86%
popularity

Publisher

verified publisherpaaatrick.com

A flutter plugin of the launcher used to open RPSystemBroadcastPickerView for iOS

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on replay_kit_launcher