All Projects → long1eu → Material_pickers

long1eu / Material_pickers

Licence: mit

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Material pickers

Colordrop
Interactive Drag & Drop Coloring with Material Design Color palette
Stars: ✭ 120 (+15.38%)
Mutual labels:  material-design, color-picker
Pickr
🎨 Flat, simple, multi-themed, responsive and hackable Color-Picker library. No dependencies, no jQuery. Compatible with all CSS Frameworks e.g. Bootstrap, Materialize. Supports alpha channel, rgba, hsla, hsva and more!
Stars: ✭ 3,759 (+3514.42%)
Mutual labels:  material-design, color-picker
Colorsheet
A color picker bottom sheet 🌈
Stars: ✭ 179 (+72.12%)
Mutual labels:  material-design, color-picker
Md2
Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Collapse, Colorpicker, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.
Stars: ✭ 389 (+274.04%)
Mutual labels:  material-design, color-picker
Color Studio
It is too hard to build coherent and accessible themes with the right colors. This should help.
Stars: ✭ 289 (+177.88%)
Mutual labels:  material-design, color-picker
Simpledialogfragments
A collection of easy to use and extendable DialogFragment's for Android
Stars: ✭ 94 (-9.62%)
Mutual labels:  material-design, color-picker
Datingapp
Dating UI kit is used for online meet up with girls and boys . The screen contains more than 30 icons and most of all required elements required to design an application like this. The XML and JAVA files contains comments at each and every point for easy understanding. Everything was made with a detail oriented style and followed by today's web trends. Clean coded & Layers are well-organized, carefully named, and grouped.
Stars: ✭ 97 (-6.73%)
Mutual labels:  material-design
Cardview
Material Design Cards ? How cool is that !
Stars: ✭ 101 (-2.88%)
Mutual labels:  material-design
Fluttertictactoe
Build Tic Tac Toe Game in Flutter
Stars: ✭ 98 (-5.77%)
Mutual labels:  material-design
Md Components
Material Design React Components
Stars: ✭ 97 (-6.73%)
Mutual labels:  material-design
Chroma
Material color picker view for Android in Kotlin.
Stars: ✭ 103 (-0.96%)
Mutual labels:  color-picker
Materialtaptargetprompt
Material Design tap target for Android. https://sjwall.github.io/MaterialTapTargetPrompt/
Stars: ✭ 1,378 (+1225%)
Mutual labels:  material-design
Xposed Fast Repo
EdXposed Repo
Stars: ✭ 101 (-2.88%)
Mutual labels:  material-design
Feedbackdialog
An Interactive Feedback Dialog for Android inspired from Google Maps Review section
Stars: ✭ 99 (-4.81%)
Mutual labels:  material-design
Material Remixer Ios
Remixer for iOS: Live adjustment of app variables.
Stars: ✭ 101 (-2.88%)
Mutual labels:  material-design
Delern
Spaced repetition learning system
Stars: ✭ 98 (-5.77%)
Mutual labels:  material-design
Android Material Avatar
Example of material transition (AKA Hero views) to pick your profile avatar.
Stars: ✭ 102 (-1.92%)
Mutual labels:  material-design
Bootstrap Colorpicker
Bootstrap Colorpicker is a modular color picker plugin for Bootstrap.
Stars: ✭ 1,351 (+1199.04%)
Mutual labels:  color-picker
Material Remixer Js
Remixer for JavaScript. Live adjustment of app variables.
Stars: ✭ 100 (-3.85%)
Mutual labels:  material-design
Material Design Dimens
Default colors and dimens per Material Design guidelines and Android Design guidelines inside one library.
Stars: ✭ 1,378 (+1225%)
Mutual labels:  material-design

Material ColorPicker

Color picker for Flutter, based on the Google Docs color picker.

alt text

Getting Started

You can embed into your material app or use it on a Dialog like this:

Future<Color> askedToLead() async => await showDialog(
    context: context,
    child: new SimpleDialog(
      title: const Text('Select color'),
      children: <Widget>[
        new ColorPicker(
          type: MaterialType.transparency,
          onColor: (color) {
            Navigator.pop(context, color);
          },
          currentColor: startColor,
        ),
      ],
    ),
  );

For help getting started with Flutter, view our online documentation.

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].