https://github.com/linwooddev/dart_pkgs
This is a collection of useful flutter plugins.
https://github.com/linwooddev/dart_pkgs
dart flutter localization
Last synced: 16 days ago
JSON representation
This is a collection of useful flutter plugins.
- Host: GitHub
- URL: https://github.com/linwooddev/dart_pkgs
- Owner: LinwoodDev
- License: apache-2.0
- Created: 2022-01-01T12:00:26.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-04-25T11:20:28.000Z (9 months ago)
- Last Synced: 2025-04-25T12:20:45.366Z (9 months ago)
- Topics: dart, flutter, localization
- Language: Dart
- Homepage:
- Size: 1.36 MB
- Stars: 7
- Watchers: 2
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Linwood Flutter Plugins
This monorepo contains a set of reusable Dart & Flutter libraries focused on productivity, localization, networking, system access, file systems, and console tooling.
Use the packages individually via git dependencies.
## Packages
- [localizer](packages/localizer) - Easy localization framework (Dart)
- [flutter_localizer](packages/flutter_localizer) - Flutter localization framework based on localizer (Flutter)
- [networker](packages/networker) - Universal networking library (Dart). Contains multiple packages with support for multiple features and protocols
- [lw_sysapi](packages/lw_sysapi) - System information & platform APIs (Flutter)
- [dart_leap](packages/dart_leap) - General helper utilities (Dart)
- [material_leap](packages/material_leap) - Extra Material widgets & helpers (Flutter)
- [generate_leap](packages/generate_leap) - Generation helper utilities (Dart)
- [lw_file_system](packages/lw_file_system) - Cross‑platform file system abstraction (Flutter)
- [lw_file_system_api](packages/lw_file_system_api) - Pure Dart API for lw_file_system
- [consoler](packages/consoler) - Console helpers & structured output (Dart)
Each package has its own README with more detailed usage.
## Inter-Package Graph
Below are direct internal dependencies (only showing notable links):
```mermaid
graph TD
dart_leap[dart_leap]
lw_file_system_api[lw_file_system_api]
material_leap --> dart_leap
material_leap --> lw_file_system_api
lw_file_system --> lw_file_system_api
localizer[localizer]
flutter_localizer --> localizer
```
Keep commit refs for these pairs synchronized with the versions declared in each package's pubspec.yaml.
## Git Dependency Examples
Minimal (not recommended for production):
```yaml
some_package:
git:
url: https://github.com//dart_pkgs.git
path: packages/some_package
```
Pinned (recommended):
```yaml
some_package:
git:
url: https://github.com//dart_pkgs.git
path: packages/some_package
ref:
```
Read more about [using git dependencies in the dart documentation](https://dart.dev/tools/pub/dependencies#git-packages).
## License
All packages are licensed under Apache 2.0.
See the root [LICENSE](LICENSE) file for details.
---
Happy building!