Go to file
Christian cc36108df1 Update .gitlab-ci.yml 2019-06-09 18:30:50 +00:00
lib Update docs 2019-06-09 14:33:25 +02:00
scripts Add scripts 2019-06-09 12:21:46 +02:00
test Add licence header 2019-06-09 13:57:33 +02:00
.gitignore Initial commit 2019-06-09 12:16:48 +02:00
.gitlab-ci.yml Update .gitlab-ci.yml 2019-06-09 18:30:50 +00:00
.metadata Initial commit 2019-06-09 12:16:48 +02:00
CHANGELOG.md Add description 2019-06-09 12:20:59 +02:00
CONTRIBUTING.md Add description 2019-06-09 12:20:59 +02:00
Gemfile Add jekyll infos 2019-06-09 12:55:57 +00:00
Gemfile.lock Try to fix publishing code again 2019-06-09 13:17:31 +00:00
LICENSE Update LICENSE 2019-06-09 11:36:59 +00:00
README.md Update README.md 2019-06-09 12:48:28 +00:00
_config.yml Add jekyll infos 2019-06-09 12:55:57 +00:00
pubspec.lock Hunt down dependencies 2019-06-09 14:08:41 +02:00
pubspec.yaml Hunt down dependencies 2019-06-09 14:08:41 +02:00

README.md

famedlysdk

Matrix SDK for the famedly talk app written in dart.

How to use this

  1. Import the sdk
  famedlysdk:
    git:
      url: https://gitlab.com/famedly/famedlysdk.git
      ref: 77be6102f6cbb2e01adc28f9caa3aa583f914235
import 'package:flutter/material.dart';
import 'package:famedlysdk/famedlysdk.dart';

  1. Access the MatrixState object by calling Matrix.of with your current BuildContext:
Client matrix = Client("famedly talk");
  1. Connect to a Matrix Homeserver and listen to the streams:

matrix.connection.onLoginStateChanged.stream.listen((bool loginState){ 
  print("LoginState: ${loginState.toString()}");
});

matrix.connection.onEvent.stream.listen((EventUpdate eventUpdate){ 
  print("New event update!");
});

matrix.connection.onRoomUpdate.stream.listen((RoomUpdate eventUpdate){ 
  print("New room update!");
});

final bool serverValid = await matrix.checkServer("https://yourhomeserver.abc");

final bool loginValid = await matrix.login("username", "password");
  1. Send a message to a Room:
final resp = await matrix.connection.jsonRequest(
    type: "PUT",
    action: "/r0/rooms/!fjd823j:example.com/send/m.room.message/$txnId",
    data: {
        "msgtype": "m.text",
        "body": "hello"
    }
);