FLUTTER ECOSYSTEM

berkanaslan/material-color-generator

🎨 HEXカラーを使用してマテリアルカラーパレットを生成するためのパッケージ。利用可能: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.