dart

Overriding theme

theme: ThemeData(
          textTheme : Theme.of(context).textTheme.apply(
            bodyColor: Colors.black,
            displayColor: Colors.grey[600],
          )
Was this helpful?