settings_ui 0.3.0 copy "settings_ui: ^0.3.0" to clipboard
settings_ui: ^0.3.0 copied to clipboard

outdated

Create native settings for Flutter app in minutes. Use single interfaces to build

Settings UI for Flutter #

pub package

Installing: #

In your pubspec.yaml

dependencies:
  settings_ui: ^0.3.0
import 'package:settings_ui/settings_ui.dart';

Basic Usage: #

      SettingsList(
        sections: [
          SettingsSection(
            title: 'Section',
            tiles: [
              SettingsTile(
                title: 'Language',
                subtitle: 'English',
                leading: Icon(Icons.language),
                onTap: () {},
              ),
              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

886
likes
0
pub points
98%
popularity

Publisher

verified publisheryako.io

Create native settings for Flutter app in minutes. Use single interfaces to build

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on settings_ui