Skip to content

beerstorm-net/flutter-settings-ui

 
 

Repository files navigation

Settings UI for Flutter

Pub Version

Installing:

In your pubspec.yaml

dependencies:
  settings_ui: ^1.0.1
import 'package:settings_ui/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

About

Create native settings for Flutter app in a minutes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 93.1%
  • Ruby 3.9%
  • Swift 1.1%
  • Java 1.0%
  • HTML 0.5%
  • Kotlin 0.3%
  • Objective-C 0.1%