KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#cli
#claude-code
#codex
#developer-tools
#react
#windows
matrix-dart-sdk
★ 120
Open GitHub ↗
Matrix SDK written in pure Dart.
Download README (.md)
Explore Similar Repositories
Sunshine
:
Sunshine - SBOM visualization tool
rizzclaw
:
Go-based AI assistant with auto-summary sessions and BM25+RAG memory system
Argparse-Interface
:
An automatic, terminal based interactive interface for any Python 3 "argparse" command line with keyboard and mouse support.
AwesomeChatGPTBot
:
ChatGPT Telegram bot: Free & Rich-Feature bot for enhanced conversations.
print-designer
:
T Shirt Design (Fabric.js + Vue.js)
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
matrix-dart-sdk
?
Download (.md)
<!-- SPDX-FileCopyrightText: 2019-Present Famedly GmbH SPDX-License-Identifier: AGPL-3.0-or-later --> # Matrix SDK Matrix (matrix.org) SDK written in dart. ## Native libraries For E2EE, vodozemac must be provided. For flutter apps you can easily import it with the [flutter_vodozemac](https://pub.dev/packages/flutter_vodozemac) package. ```sh flutter pub add matrix # Optional: For end to end encryption: flutter pub add flutter_vodozemac ``` ## Get started See the API documentation for details: [API documentation](https://pub.dev/documentation/matrix/latest/) ### Tests ```shell thread_count=$(getconf _NPROCESSORS_ONLN) // or your favourite number :3 dart test --concurrency=$thread_count test ``` - Adding the `-x olm` flag will skip tests which require olm - Using `-t olm` will run only olm specific tests, but these will probably break as they need prior setup (which is not marked as olm and hence won't be run)