17 lines
279 B
Dart
17 lines
279 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class PageProvider with ChangeNotifier {
|
|
int _currentIndex = 0;
|
|
|
|
int get currentIndex => _currentIndex;
|
|
|
|
set currentIndex(int index) {
|
|
_currentIndex = index;
|
|
notifyListeners();
|
|
}
|
|
|
|
remove() {
|
|
_currentIndex = 0;
|
|
}
|
|
}
|