You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
246B

  1. import 'package:get/get.dart';
  2. class ChangeButtonInForm extends GetxController {
  3. bool isEdit;
  4. void resetValue() {
  5. isEdit = false;
  6. update();
  7. }
  8. void updateToEdit(bool isChangeEdit) {
  9. isEdit = isChangeEdit;
  10. update();
  11. }
  12. }