../../../../../../../../../.pub-cache/hosted/pub.dartlang.org/flutter_duration_picker-1.0.4/lib/flutter_duration_picker.dart:506:44: Error: Method not found: 'ButtonTheme.bar'.
final Widget actions = new ButtonTheme.bar(
^^^
ButtonTheme.bar is Deprecated. We need to use ButtonBarTheme instead which offers more flexibility to configure ButtonBar widgets. This feature was deprecated after v1.9.1.
Version Info
My flutter Version :
Error Stacktrace :
As per SO post : https://stackoverflow.com/questions/66027441/error-method-not-found-buttontheme-bar
ButtonTheme.bar is Deprecated. We need to use ButtonBarTheme instead which offers more flexibility to configure ButtonBar widgets. This feature was deprecated after v1.9.1.
So need to change
final Widget actions = new ButtonTheme.bar(
to
final Widget actions = new ButtonBarTheme(
on line
506
offlutter_duration_picker.dart
I am happy to submit PR for the same.