https://github.com/dinbtechit/aries_vcx
https://github.com/dinbtechit/aries_vcx
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dinbtechit/aries_vcx
- Owner: dinbtechit
- Created: 2023-01-18T04:18:18.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-05-29T21:01:20.000Z (about 3 years ago)
- Last Synced: 2025-02-12T08:57:46.423Z (over 1 year ago)
- Language: Dart
- Size: 4.78 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Aries VCX (Dart and Flutter Wrapper)
| Platform | CPU / Arch |
|----------|----------------------------------|
| Android | ✅ x84, ✅ x86_64, ✅ arm7, ✅ arm64 |
| IOS | ⏳ x86_64, ✅ arm64, ❌ arm64-sim |
| MacOS | ✅ x86_64, ✅ arm64 |
| Linux | ✅ x86_64, ✅ arm64 |
| Windows | ✅ x86_64, ⏳arm64 |
| Web | 🚫 wasm (Low priority) |
| **Legend** | ⏳ - InProgress/Pending | ✅ - Supported | ❌ - Not Supported | 🚫 - Not started |
|------------|------------------------|---------------|-------------------|------------------|
## Installation
**For Plain Dart:**
```sh
dart pub add aries_vcx
```
**For Flutter :**
```shell
flutter pub add flutter_aries_vcx
```
## Usage:
```dart
// with flutter (flutter_aries_vcx)
final instance = await AriesVcx.defaultInstance;
// Dart-only (just aries_vcx)
final instance = AriesVcx.getInstance(
path: instanceDirectory,
// Following line will change based on your platform
library: DynamicLibrary.open('libaries_vcx.so'),
);
```