Files
flisp_app/lib/provider/app_provider.dart
2025-11-06 18:52:05 +08:00

11 lines
234 B
Dart

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