flutter_settings_ui 2.0.1 copy "flutter_settings_ui: ^2.0.1" to clipboard
flutter_settings_ui: ^2.0.1 copied to clipboard

Fork of settings_ui. Create native settings for Flutter app in minutes.

Settings UI for Flutter #

Pub Version

Installing: #

In your pubspec.yaml

dependencies:
  flutter_settings_ui: ^1.0.1
import 'package:flutter_settings_ui/flutter_settings_ui.dart';

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) {},
              ),
            ],
          ),
        ],
      )


Settings UI supports dark mode: #


License #

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

118
likes
130
pub points
94%
popularity

Publisher

verified publishersteenbakker.dev

Fork of settings_ui. Create native settings for Flutter app in minutes.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_settings_ui