https://github.com/davidzou/flutter_plume
A tools for flutter [StatelessWidget], for widgets that always build the same way given a particular configuration and ambient state.
https://github.com/davidzou/flutter_plume
dart flutter framework tools ui-kit
Last synced: about 2 months ago
JSON representation
A tools for flutter [StatelessWidget], for widgets that always build the same way given a particular configuration and ambient state.
- Host: GitHub
- URL: https://github.com/davidzou/flutter_plume
- Owner: davidzou
- License: apache-2.0
- Created: 2020-08-05T02:36:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-12T02:20:21.000Z (over 2 years ago)
- Last Synced: 2025-06-08T04:20:53.946Z (10 months ago)
- Topics: dart, flutter, framework, tools, ui-kit
- Language: Dart
- Homepage:
- Size: 6.33 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# plume
A tools for flutter [StatelessWidget], for widgets that always build the same way given a particular configuration and ambient state.
## Getting Started
[](https://github.com/davidzou/flutter_plume)
[MORE GUIDE](doc/getting_started.md)
[More Example](https://github.com/davidzou/flutter_challenge)
### Framework
> Builder
ListViewBuilder
> Container
[TernaryContainer] The ternary container.
> Dialog
[DialogProvider] The standard dialog ui.
### Custom Widgets
> Block Container
A custom rectangular block with no state. Common experimental test code.
You can find it in [flutter_challenge](https://github.com/davidzou/flutter_challenge)
> HeaderTitle
A custom headline.
> YearsWidget
A display part with year at the top of calendar, button can operate year increment and decrement.
```
YearsWidget(
onChanged: (int year) {
print("$year");
}
)
```
### Tools
> RWSharedPreferences
A simple encapsulation of the third-party library of sharepreferences makes it more convenient to use.