如何在figma文件中给出的flutter中使用rgb代码

kmbjn2e3  于 2023-02-20  发布在  Flutter
关注(0)|答案(3)|浏览(251)

我已经给出了figma文件,但颜色与flutter代码中的argb不匹配。
figma file

js81xvg6

js81xvg61#

只需使用此函数Color.fromRGBO(0, 82, 204, 1)

blmhpbnm

blmhpbnm2#

要在Flutter中使用figmargba color,可以使用Color.fromARGB(int a, int r, int g, int b)
在您情况下:
Color.fromARGB(1, 0, 82, 204)

5rgfhyps

5rgfhyps3#

您可以使用

Color.fromARGB(int opacity, int red, int green, int blue)

不透明度值1表示不透明,0表示完全透明!

相关问题