peerdart 0.5.4 copy "peerdart: ^0.5.4" to clipboard
peerdart: ^0.5.4 copied to clipboard

Simple peer-to-peer with WebRTC for Dart. PeerJS port for Flutter.

example/lib/main.dart

import 'package:example/call_example.dart';
import 'package:example/data_connection_example.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'PeerDart Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      initialRoute: "/",
      routes: {
        '/': (context) => const MyHomePage(title: "PeerDart Demo"),
        '/callExample': (context) => const CallExample(),
        '/dataConnectionExample': (context) => const DataConnectionExample(),
      },
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  void onPressCall() async {
    await Navigator.of(context).pushNamed("/callExample");
  }

  void onPressData() async {
    await Navigator.of(context).pushNamed("/dataConnectionExample");
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text(widget.title),
        ),
        body: Center(
          child: Row(
            mainAxisAlignment: MainAxisAlignment.spaceAround,
            children: <Widget>[
              ElevatedButton(
                  onPressed: onPressCall,
                  child: const Text("Navigate to call example")),
              ElevatedButton(
                  onPressed: onPressData,
                  child: const Text("Navigate to data example"))
            ],
          ),
        ));
  }
}
56
likes
130
pub points
85%
popularity

Publisher

unverified uploader

Simple peer-to-peer with WebRTC for Dart. PeerJS port for Flutter.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

events_emitter, flutter_webrtc, http, uuid, web_socket_channel

More

Packages that depend on peerdart