Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/techaurelian2/some_settings_ui
Some opinionated widgets that can be used for quickly developing Settings screen UI for Flutter apps.
https://github.com/techaurelian2/some_settings_ui
Last synced: 26 days ago
JSON representation
Some opinionated widgets that can be used for quickly developing Settings screen UI for Flutter apps.
- Host: GitHub
- URL: https://github.com/techaurelian2/some_settings_ui
- Owner: TechAurelian2
- License: bsd-3-clause
- Created: 2022-07-08T13:31:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-09T10:33:07.000Z (over 2 years ago)
- Last Synced: 2024-03-03T11:06:39.946Z (10 months ago)
- Language: Dart
- Homepage: https://pub.dev/packages/some_settings_ui
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Some opinionated widgets that can be used for quickly developing Settings screen UI for Flutter apps.
## Usage
To use this package, add `some_settings_ui` as a
[dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).## Example
A simple usage example of the ```SliderDialogListTile``` widget:
```dart
SliderDialogListTile(
title: const Text('A custom setting'),
value: _customSettingValue,
min: 2.0,
max: 36.0,
onChanged: (double value) => setState(() => _customSettingValue = value),
onDisplayValue: (value) => '$value custom units',
),
```