DefaultTextStyle in FLutter

vasanth9

vasanthkumar

Posted on July 12, 2021

DefaultTextStyle in FLutter

If you want to have a default Text Style down the tree.we can use the DefaultTextStyle. All you need to do is to mention the style and wrap the child around DefaultTextStyle.
The text style to apply to descendant Text widgets which don't have an explicit style.

style: TextStyle(
          fontSize: 20,
          fontWeight: FontWeight.bold,
          color: Colors.black,
        ),
Enter fullscreen mode Exit fullscreen mode


💖 💪 🙅 🚩
vasanth9
vasanthkumar

Posted on July 12, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

DefaultTextStyle in FLutter
flutter DefaultTextStyle in FLutter

July 12, 2021