fix: add price where needed

This commit is contained in:
Alzalia 2025-08-05 12:38:29 +02:00
parent 630eacc1e1
commit 60265b9735
3 changed files with 74 additions and 24 deletions

View file

@ -72,4 +72,11 @@ class AddViewModel extends ChangeNotifier {
id: 0,
);
}
bool _askPrice = true;
bool get askPrice => _askPrice;
set askPrice(bool newValue) {
_askPrice = newValue;
notifyListeners();
}
}