gpt4 book ai didi

dart - 如何在 Flutter 应用程序中使用数字色度计的 rgb 颜色?

转载 作者:IT王子 更新时间:2023-10-29 07:10:13 24 4
gpt4 key购买 nike

是否可以在 Flutter 中使用 RGB 颜色。例如在 iOS 中我们使用 UIColor(red:1/255.0, green: 102/255.0,blue: 112/255.0,alpha: 1).

最佳答案

是的,你可以。 Flutter 提供了一些构造颜色的方法。

来自 the documentation :

Color c = const Color(0xFF42A5F5);
Color c = const Color.fromARGB(0xFF, 0x42, 0xA5, 0xF5);
Color c = const Color.fromARGB(255, 66, 165, 245);
Color c = const Color.fromRGBO(66, 165, 245, 1.0);

关于dart - 如何在 Flutter 应用程序中使用数字色度计的 rgb 颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50564865/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com