You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
2 years ago | |
---|---|---|
.gitlab | 3 years ago | |
doc | 3 years ago | |
example | 3 years ago | |
home | 3 years ago | |
lib | 2 years ago | |
olm@efd17631b1 | 3 years ago | |
test | 2 years ago | |
test_driver | 2 years ago | |
.gitignore | 3 years ago | |
.gitlab-ci.yml | 2 years ago | |
.metadata | 4 years ago | |
CHANGELOG.md | 4 years ago | |
CONTRIBUTING.md | 3 years ago | |
LICENSE | 4 years ago | |
README.md | 2 years ago | |
analysis_options.yaml | 3 years ago | |
build.yaml | 3 years ago | |
prepare.sh | 2 years ago | |
pubspec.yaml | 2 years ago | |
test.sh | 2 years ago | |
test_driver.sh | 3 years ago |
README.md
+++ 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
- 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 client = Client("HappyChat");
Take a look here for an example store: https://gitlab.com/ChristianPauly/fluffychat-flutter/snippets
- Connect to a Matrix Homeserver and listen to the streams:
client.onLoginStateChanged.stream.listen((bool loginState){
print("LoginState: ${loginState.toString()}");
});
client.onEvent.stream.listen((EventUpdate eventUpdate){
print("New event update!");
});
client.onRoomUpdate.stream.listen((RoomUpdate eventUpdate){
print("New room update!");
});
try {
await client.checkHomeserver("https://yourhomeserver.abc");
await client.login("username", "password");
}
catch(e) {
print('No luck...');
}
- Send a message to a Room:
await client.getRoomById('your_room_id').sendTextEvent('Hello world');