Answers for "flutter padding between text and underline"

0

flutter padding between text and underline

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,
            ),
          )
Posted by: Guest on April-29-2021

Code answers related to "flutter padding between text and underline"

Browse Popular Code Answers by Language