Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leam-tech/renovation_core.dart
The Frappe Dart/Flutter Front End SDK
https://github.com/leam-tech/renovation_core.dart
dart erpnext frappe
Last synced: 2 months ago
JSON representation
The Frappe Dart/Flutter Front End SDK
- Host: GitHub
- URL: https://github.com/leam-tech/renovation_core.dart
- Owner: leam-tech
- License: other
- Created: 2020-03-22T20:51:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-12T13:10:55.000Z (about 1 year ago)
- Last Synced: 2024-05-15T20:07:39.549Z (6 months ago)
- Topics: dart, erpnext, frappe
- Language: Dart
- Homepage: https://renovation.leam.dev
- Size: 754 KB
- Stars: 18
- Watchers: 8
- Forks: 19
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-frappe - renovation_core.dart - The Frappe Dart/Flutter Front End SDK. (Uncategorized / Uncategorized)
README
## Getting Started
### Backend
First you need to install renovation_core app from backend
```python
bench get-app renovation_core https://github.com/leam-tech/renovation_core.git
```### Dart/Flutter
To get started, just import the package like:
```dart
import 'package:renovation_core/core.dart';
```#### Auth
```dart
import 'package:renovation_core/auth.dart';
```#### Model
```dart
import 'package:renovation_core/model.dart';
```#### Meta
```dart
import 'package:renovation_core/meta.dart';
```#### Permission
```dart
import 'package:renovation_core/perm.dart';
```#### Storage
```dart
import 'package:renovation_core/storage.dart';
```#### Translation
```dart
import 'package:renovation_core/translation.dart';
```#### Misc
```dart
import 'package:renovation_core/misc.dart';
```#### Backend Specific
```dart
import 'package:renovation_core/backend.dart';
```## Documentation
[Renovation Documentation](https://renovation.leam.dev/)