Files
Vocasia-LMS-Mobile-apps--TA…/lib/providers/tab_provider.dart

13 lines
237 B
Dart

import 'package:flutter/material.dart';
class TabProvider with ChangeNotifier {
int _currentIndex = 0;
int get currentIndex => _currentIndex;
set currentIndex(int index) {
_currentIndex = index;
notifyListeners();
}
}