All Projects → yako-dev → Flutter Settings Ui

yako-dev / Flutter Settings Ui

Licence: apache-2.0
Create native settings for Flutter app in a minutes.

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Flutter Settings Ui

Flutter badges
A flutter package for creating badges.
Stars: ✭ 391 (+7.71%)
Mutual labels:  mobile, ui-components, widget
Flutter Status Alert
Display Apple system-like self-hiding status alerts. It is well suited for notifying user without interrupting user flow.
Stars: ✭ 111 (-69.42%)
Mutual labels:  mobile, ui-components, widget
Nativescript Drop Down
A NativeScript DropDown widget.
Stars: ✭ 107 (-70.52%)
Mutual labels:  ui-components, widget
Ka Table
Lightweight MIT React Table component for both TS and JS with Sorting, Filtering, Grouping, Virtualization, Editing and many more
Stars: ✭ 117 (-67.77%)
Mutual labels:  ui-components, widget
Nativescript Ui Feedback
This repository is used for customer feedback regarding Telerik UI for NativeScript. The issues system here is used by customers who want to submit their feature requests or vote for existing ones.
Stars: ✭ 110 (-69.7%)
Mutual labels:  mobile, ui-components
Pure Css3 Animated Border
Pure CSS3 animated border for all html element.
Stars: ✭ 63 (-82.64%)
Mutual labels:  ui-components, widget
Incubator Weex Ui
🏄 A rich interaction, lightweight, high performance UI library based on Weex.
Stars: ✭ 4,793 (+1220.39%)
Mutual labels:  mobile, ui-components
Fancyaccordionview
An Android fancy accordion view
Stars: ✭ 64 (-82.37%)
Mutual labels:  ui-components, widget
Components
MobileUI was created thinking of making your hybrid application faster and smaller since you only install what you are really going to use for UI.
Stars: ✭ 125 (-65.56%)
Mutual labels:  mobile, ui-components
Jeelizglassesvtowidget
JavaScript/WebGL glasses virtual try on widget. Real time webcam experience, robust to all lighting conditions, high end 3D PBR rendering, easy to integrate, fallback to server-side rendering
Stars: ✭ 134 (-63.09%)
Mutual labels:  mobile, widget
Qtmvvm
A mvvm oriented library for Qt, to create Projects for Widgets and Quick in parallel
Stars: ✭ 205 (-43.53%)
Mutual labels:  settings, widget
flutter json view
📄 Displaying json models in a Flutter widget
Stars: ✭ 28 (-92.29%)
Mutual labels:  widget, ui-components
chatKit
Open Source React Chat Widget. Ready for use and can be connected to any backend like Chatbot/NLP/Live Chat engine or messenger.
Stars: ✭ 42 (-88.43%)
Mutual labels:  widget, ui-components
Colorpicker
jQuery UI widget for color picking (similar to the one in Microsoft Office 2010).
Stars: ✭ 271 (-25.34%)
Mutual labels:  ui-components, widget
Airframe React
Free Open Source High Quality Dashboard based on Bootstrap 4 & React 16: http://dashboards.webkom.co/react/airframe
Stars: ✭ 3,659 (+907.99%)
Mutual labels:  ui-components
React Native Tensorflow
A TensorFlow inference library for react native
Stars: ✭ 354 (-2.48%)
Mutual labels:  mobile
Gmscore
Free implementation of Play Services
Stars: ✭ 4,356 (+1100%)
Mutual labels:  mobile
Stacklayoutmanager
customized layoutmanager,let item pile up like stackview/类似最美有物卡片堆叠效果
Stars: ✭ 343 (-5.51%)
Mutual labels:  widget
React Native Socket Io Example
A demo for implementing a mobile chatroom
Stars: ✭ 358 (-1.38%)
Mutual labels:  mobile
Coreui Free Laravel Admin Template
CoreUI Free Laravel Bootstrap Admin Template
Stars: ✭ 353 (-2.75%)
Mutual labels:  ui-components

Settings UI for Flutter

Pub Version

Installing:

In your pubspec.yaml

dependencies:
  settings_ui: ^0.7.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),
                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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].