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