Hibok
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.
 
 
 
 
 
 

11 lines
221 B

  1. import 'package:flutter/material.dart';
  2. class GiftSelectProvider with ChangeNotifier {
  3. int curSelectIndex = 0;
  4. changeSelectIndex(int newIndex) {
  5. curSelectIndex = newIndex;
  6. notifyListeners();
  7. }
  8. }