https://github.com/banool/dictionarylib
Library for functionality common to the sign language dictionary apps.
https://github.com/banool/dictionarylib
Last synced: 11 months ago
JSON representation
Library for functionality common to the sign language dictionary apps.
- Host: GitHub
- URL: https://github.com/banool/dictionarylib
- Owner: banool
- License: apache-2.0
- Created: 2024-01-02T18:16:45.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-13T10:13:46.000Z (about 1 year ago)
- Last Synced: 2025-07-07T02:50:25.668Z (11 months ago)
- Language: Dart
- Homepage:
- Size: 119 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Dictionary Lib
## Dev guide
When first pulling this repo, add this to `.git/hooks/pre-commit`:
```
#!/bin/bash
./bump_version.sh
git add pubspec.yaml
```
## Localization
Run this when you change any of the files in lib/l10n:
```
flutter gen-l10n
dart fix --apply
```
## Generating entries (de)serialization code
```
flutter pub run build_runner build
```