Hibok
您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 
 
 
 

21 行
378 B

  1. import 'package:flutter/material.dart';
  2. class VoucherChangeProvider with ChangeNotifier {
  3. int voucher = 0;
  4. initVoucher(int newValue) {
  5. voucher = newValue;
  6. notifyListeners();
  7. }
  8. addVoucher(int newValue) {
  9. voucher += newValue;
  10. notifyListeners();
  11. }
  12. subVoucher(int newValue) {
  13. voucher -= newValue;
  14. notifyListeners();
  15. }
  16. }