Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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',
),
```