c2f
c2f copied to clipboard
Color css property don't convert correctly
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