currentIndex.dart 199 B

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