phoenix_wings 0.0.2 copy "phoenix_wings: ^0.0.2" to clipboard
phoenix_wings: ^0.0.2 copied to clipboard

outdatedDart 1 only

Phoenix Channel client for Dart

phoenix_wings.dart #

A Phoenix Channel implementation for Dart

Attempts to feature match the Javascript implementation found at phoenix.js

Usage #

import 'package:phoenix_wings/phoenix_wings.dart';


final socket = new PhoenixSocket("ws://localhost:4000/websocket/socket");

socket.connect();

final chatChannel = socket.channel("room:chat", {"id": "myId"});

chatChannel.on("user_entered", PhoenixMessageCallback (Map payload, String _ref, String, _joinRef) {
    print(payload);
});

chatChannel.join();
11
likes
0
pub points
81%
popularity

Publisher

unverified uploader

Phoenix Channel client for Dart

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on phoenix_wings