i have an error after upgrading my flutter

340 Views Asked by At
Error: The getter 'accentColor' isn't defined for the class 'ThemeData'.
../…/src/numberpicker.dart:200
- 'ThemeData' is from 'package:flutter/src/material/theme_data.dart' ('/opt/flutter/packages/flutter/lib/src/material/theme_data.dart').
package:flutter/…/material/theme_data.dart:1
Try correcting the name to the name of an existing getter, or defining a getter or field named 'accentColor'.
        themeData.textTheme.headline5?.copyWith(color: themeData.accentColor);

How do I run past this to get my app to debug

1

There are 1 best solutions below

0
Nico Spencer On

From the ThemeData migration guide, the closest replacement for this property is Theme.of(context).colorScheme.secondary;.