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.