gpt4 book ai didi

dart - 如何在 Flutter 中为文本添加阴影

转载 作者:IT王子 更新时间:2023-10-29 06:36:53 25 4
gpt4 key购买 nike

如何给文本添加阴影。

TextStyle下还有一个 shadows 属性。

如果你能包括它的实现示例将会很有帮助

最佳答案

这是一个简单的例子,借自 here :

Text(
'Hello, world!',
style: TextStyle(
shadows: <Shadow>[
Shadow(
offset: Offset(10.0, 10.0),
blurRadius: 3.0,
color: Color.fromARGB(255, 0, 0, 0),
),
Shadow(
offset: Offset(10.0, 10.0),
blurRadius: 8.0,
color: Color.fromARGB(125, 0, 0, 255),
),
],
),
),

关于dart - 如何在 Flutter 中为文本添加阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55721033/

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