FLUTTER ECOSYSTEM

berkanaslan/material-color-generator

🎨 एक मैटेरियल रंग पैलेट को जनरेट करने के लिए एक पैकेज। हेक्स रंग के साथ। उपलब्ध है: pub.dev/packages/material_color_generator

material-color-generator प्रोजेक्ट कवर
Stars
7
Forks
0
अंतिम पुश (UTC)
16 दिस॰ 2022
प्रोजेक्ट स्थिति
सक्रिय
Berkan Aslan GitHub avatar
GITHUB User

Berkan Aslan ↗

Software Developer @ Patika Global Technology.

@Patika-Global-Technology Istanbul
भाषाएँDart

इस रिपॉज़िटरी के पैकेज

उपयोग की गई निर्भरताएँ

निर्भरता सूची 2 आइटम
  • flutter{"sdk":"flutter"}
  • flutter_testडेवलपमेंट{"sdk":"flutter"}

मूल README

यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।

README खोलें / बंद करें

material_color_generator

This package allows you to get a material color palette by giving any HEX color. Pretty simple, pretty plain.

How can i use this?

Go to the main.dart file of your project and find the MaterialApp widget. Pick any hex color and use with generateMaterialColor() method. It's done.

MaterialApp(
  debugShowCheckedModeBanner: false,
  title: 'Flutter App',
  theme: ThemeData(
    primarySwatch: generateMaterialColor(color: Color(0xFF113861)),
  ),
);

Getting Started

This project is a starting point for a Dart package, a library module containing code that can be shared easily across multiple Flutter or Dart projects.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.