No description
Find a file
2020-07-22 03:48:26 +03:00
.gitlab
doc
home
lib Merge commit 'a46942a14051cb02e70e9223fb3e2648a71c0891' into yiffed 2020-07-22 03:48:26 +03:00
test Merge branch 'soru/fix-members-requests' into 'master' 2020-07-21 08:05:48 +00:00
test_driver
.gitignore
.gitlab-ci.yml
.metadata
analysis_options.yaml
build.yaml add Databse.connect to be able to run in isaltes 2020-07-17 13:20:23 +02:00
CHANGELOG.md
CONTRIBUTING.md
LICENSE
prepare.sh
pubspec.lock use prev_content to calculate displayname and avatar_url, if content unavailable 2020-07-17 12:02:43 +02:00
pubspec.yaml olm and matrix_file_e2ee from pub 2020-07-14 17:08:30 +02:00
README.md
test.sh

+++ This is a fork of famedlysdk to statisfy FurryChat (fork of FluffyChat) needs +++

famedlysdk

Matrix SDK for the famedly talk app written in dart.

API

The API is documented here: famedly.gitlab.io/famedlysdk/famedlysdk/famedlysdk-library.html

How to use this

  1. Import the sdk
  famedlysdk:
    git:
      url: https://gitlab.com/famedly/famedlysdk.git
import 'package:flutter/material.dart';
import 'package:famedlysdk/famedlysdk.dart';
  1. Create a new client:
Client matrix = Client("HappyChat");

Take a look here for an example store: https://gitlab.com/ChristianPauly/fluffychat-flutter/snippets

Client matrix = Client("HappyChat");
  1. Connect to a Matrix Homeserver and listen to the streams:
matrix.onLoginStateChanged.stream.listen((bool loginState){ 
  print("LoginState: ${loginState.toString()}");
});

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

matrix.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.jsonRequest(
    type: "PUT",
    action: "/r0/rooms/!fjd823j:example.com/send/m.room.message/$txnId",
    data: {
        "msgtype": "m.text",
        "body": "hello"
    }
);