二次开发源码提交

This commit is contained in:
2026-05-15 08:52:48 +08:00
parent 4131f7321a
commit eb35a1d067
191 changed files with 34566 additions and 0 deletions
@@ -0,0 +1,14 @@
import 'package:flutter/foundation.dart';
class NavigationProvider extends ChangeNotifier {
int _currentIndex = 0; // 默认概览页
int get currentIndex => _currentIndex;
void setIndex(int index) {
if (_currentIndex != index) {
_currentIndex = index;
notifyListeners();
}
}
}