Hibok
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 

11 rindas
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. }