matrix_sdk 0.12.0 copy "matrix_sdk: ^0.12.0" to clipboard
matrix_sdk: ^0.12.0 copied to clipboard

discontinued
outdated

A Dart implementation of the federated communications protocol, Matrix.

example/main.dart

import 'package:matrix_sdk/matrix_sdk.dart';

void main() async {
  final hs = Homeserver(Uri.parse("https://matrix.org"));
  final user = await hs.login(Username("joe"), "badPassword");

  await for (bool succes in user.sync()) {
    if (succes) {
      // Do something
    }
  }
}
11
likes
0
pub points
0%
popularity

Publisher

verified publisherpattle.org

A Dart implementation of the federated communications protocol, Matrix.

Repository
View/report issues

License

unknown (LICENSE)

Dependencies

chopper, http, kiwi, meta, validators

More

Packages that depend on matrix_sdk