📜  在文本和下划线之间颤动填充 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:22.439000             🧑  作者: Mango

代码示例1
Text(
            "Forgot Password?",
            style: TextStyle(
              shadows: [
                Shadow(
                    color: Colors.red,
                    offset: Offset(0, -5))
              ],
              color: Colors.transparent,
              decoration:
              TextDecoration.underline,
              decorationColor: Colors.blue,
              decorationThickness: 4,
              decorationStyle:
              TextDecorationStyle.dashed,
            ),
          )