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

outdated

A Flutter plugin to make use of cobrowse.io. View your app running remotely on customer devices. Guide the user, or take remote control.

example/lib/main.dart

import 'dart:collection';
import 'dart:io';

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

import 'package:flutter/services.dart';
import 'package:cobrowseio_flutter/cobrowseio_flutter.dart';

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

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

class _MyAppState extends State<MyApp> {
  @override
  void initState(){
    super.initState();
    CobrowseIO.start("YOUR_LICENSE_KEY", {
        'username': 'Test'
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
          appBar: AppBar(
            title: Text('Co-browse.io Example'),
          ),
          body: Center(
            child: Text("First setup the correct license key, then find this device in your cobrowse.io dashboard to create a session.", textAlign: TextAlign.center)
          )
      ),
    );
  }
}
1
likes
0
pub points
61%
popularity

Publisher

verified publisherrobodigital.nl

A Flutter plugin to make use of cobrowse.io. View your app running remotely on customer devices. Guide the user, or take remote control.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on cobrowseio_flutter