mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 00:34:06 +02:00
11 lines
205 B
Dart
11 lines
205 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class BottomNavigationBarRepo extends ChangeNotifier {
|
|
int currentIndex = 0;
|
|
|
|
void setIndex(int index) {
|
|
currentIndex = index;
|
|
notifyListeners();
|
|
}
|
|
}
|