6e18838725
[CI] Remove gradle workaround See merge request famedly/famedlysdk!174 |
||
---|---|---|
lib | ||
test | ||
.gitignore | ||
.gitlab-ci.yml | ||
.metadata | ||
_config.yml | ||
analysis_options.yaml | ||
CHANGELOG.md | ||
CONTRIBUTING.md | ||
Gemfile | ||
Gemfile.lock | ||
LICENSE | ||
pubspec.lock | ||
pubspec.yaml | ||
README.md |
+++ This SDK is under development and highly experimental +++
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
- Import the sdk
famedlysdk:
git:
url: https://gitlab.com/famedly/famedlysdk.git
import 'package:flutter/material.dart';
import 'package:famedlysdk/famedlysdk.dart';
- 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");
- 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");
- 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"
}
);