material_color_generator
一個用於產生帶有十六進制顏色的材質色板的套件。
🎨 一個用於產生帶有十六進制顏色的材質色板的套件。可於以下位置取得:pub.dev/packages/material_color_generator
{"sdk":"flutter"}{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
This package allows you to get a material color palette by giving any HEX color. Pretty simple, pretty plain.
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)),
),
);
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.