0
0No answers
Browser other questions tagged android-studio flutter dart
You are not signed in. Login or sign up in order to post.0
Browser other questions tagged android-studio flutter dart
You are not signed in. Login or sign up in order to post.
According to the package changelog there is a Breaking change na 2.0.0 -> "Numberpicker.integer is now Numberpicker."
– Renan Gomes
show!!! thank you so much!!! I think I got it right here...
– Tatiana Pacheco
but when I’m going to perform, it comes to this... (this was going bad already in the beginning...
– Tatiana Pacheco
/C:/src/flutter/. 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( FAILURE: Build failed with an Exception. * Where: Script 'C: src flutter Packages flutter_tools Gradle flutter.Gradle' line: 991 * What Went Wrong: Execution failed for task ':app:compileFlutterBuildDebug'. > Process 'command 'C: src flutter bin flutter.bat'' finished with non-zero Exit value 1
– Tatiana Pacheco
Looks like a problem with another widget (Buttontheme), see if this solves it: https://stackoverflow.com/q/66027441/4056678 - looks like it needs to change
ButtonTheme.bar
forButtonBarTheme
. Maybe it’s good to lock dependency versions on your pubspec.yml so there are no surprises with updates.– Renan Gomes