You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
../../../../../../../../../.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.
So need to change
final Widget actions = new ButtonTheme.bar(
to
final Widget actions = new ButtonBarTheme(
on line 506 of flutter_duration_picker.dart
I am happy to submit PR for the same.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: