v3.0.1flutter_settings_ui
몇 분 만에 Flutter 앱용 네이티브 설정을 생성하세요. settings_ui의 포크입니다.
settings_ui의 포크입니다. Flutter 앱에 네이티브 설정을 몇 분 만에 만들 수 있습니다.
{"sdk":"flutter"}{"sdk":"flutter"}2.2.0아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
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.
https://raw.githubusercontent.com/yako-dev/flutter-settings-ui/master/assets/flutter_settings_ui_logo.png
In your pubspec.yaml
dependencies:
flutter_settings_ui: ^3.0.0
import 'package:flutter_settings_ui/flutter_settings_ui.dart';
SettingsList(
sections: [
SettingsSection(
title: const Text('Section'),
tiles: [
SettingsTile(
title: const Text('Language'),
description: const Text('English'),
leading: const Icon(Icons.language),
onPressed: (BuildContext context) {},
),
SettingsTile.switchTile(
initialValue: false,
title: const Text('Use fingerprint'),
leading: const Icon(Icons.fingerprint),
onToggle: (bool value) {},
),
],
),
],
)
https://raw.githubusercontent.com/yako-dev/flutter-settings-ui/master/assets/dark_mode_animation.gif
Contributions are welcome! If you're new to the project's tech stack or need a refresher, here are some resources to get started:
Dart:
C++:
CMake:
Ruby:
Swift:
C:
Other:
Feel free to explore these resources to gain familiarity with the project's tech stack and contribute effectively.
This project is licensed under the Apache License 2.0 - see the LICENSE file for details