c2f icon indicating copy to clipboard operation
c2f copied to clipboard

Color css property don't convert correctly

Open mohagali opened this issue 2 years ago • 0 comments

css input:

background-color: #e0e0e0;
color:#e0e0e0;

Flutter

Container(
  child: Text(
    "Hello World",
    style: TextStyle(
      color: Color(0xE0E0E000),
    ),
  ),
  decoration: BoxDecoration(
    color: Color(0xE0E0E000),
  )
),

error: #e0e0e0 should be 0xFFE0E0E0 not 0xE0E0E000

FF 0xFFE0E0E0

mohagali avatar Dec 09 '22 19:12 mohagali