FLUTTER ECOSYSTEM

berkanaslan/material-color-generator

🎨 一个用于生成带有十六进制颜色的材料色板的包。可在以下位置获取:pub.dev/packages/material_color_generator

material-color-generator 项目封面
Stars
7
Forks
0
最近推送(UTC)
2022年12月16日
项目状态
未归档
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.