flutter_settings_ui

Creator: coderz1093

Last updated:

Add to Cart

Description:

flutter settings ui

Settings UI for Flutter #

This project was archived, however since the original package seems unmaintained yet, i reactivated this package together with some improvements and changes.
Please checkout the changelog for all changes.



Installing: #
In your pubspec.yaml
dependencies:
flutter_settings_ui: ^3.0.0
copied to clipboard
import 'package:flutter_settings_ui/flutter_settings_ui.dart';
copied to clipboard
Basic Usage: #
SettingsList(
sections: [
SettingsSection(
title: 'Section',
tiles: [
SettingsTile(
title: 'Language',
subtitle: 'English',
leading: Icon(Icons.language),
onPressed: (BuildContext context) {},
),
SettingsTile.switchTile(
title: 'Use fingerprint',
leading: Icon(Icons.fingerprint),
switchValue: value,
onToggle: (bool value) {},
),
],
),
],
)
copied to clipboard


Settings UI supports dark mode: #




License #
This project is licensed under the Apache License 2.0 - see the LICENSE file for details

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.