강의

멘토링

커뮤니티

Inflearn Community Q&A

ecomarin1277's profile image
ecomarin1277

asked

[Code Factory] [Beginner] Flutter 3.0 App Development - Escape Beginner Status Today with 10 Projects!

칼러를 지정할때 복잡한 숫자 사용 이유?

Written on

·

498

0

Colors.black와 같이 지정안하고

Color(0xFF2A3A7C)와 같이 사용하는 이유가 있나요?

클론코딩Flutter

Answer 2

0

The question you asked is called hex code. It is not a concept that exists only in Flutter, but a global standard used to refer to colors expressed on computers.

https://www.inflearn.com/questions/745981/color by number

0

codefactory님의 프로필 이미지
codefactory
Instructor

안녕하세요!

더욱 정확한 색상을 표기할 수 있기 때문입니다. 검정색도 다양한 검정색이 존재하니까요.

질문주신걸 hex code라고 부르는데 플러터에만 존재하는 개념이 아니라 컴퓨터에서 표현하는 색상을 지칭할때 사용하는 글로벌 스탠다드입니다.

감사합니다!

ecomarin1277's profile image
ecomarin1277

asked

Ask a question