Fixed wallets load

This commit is contained in:
Stephan D
2026-01-22 18:17:41 +01:00
parent f202acd8ab
commit 71753e09ba
9 changed files with 135 additions and 167 deletions

View File

@@ -1,15 +0,0 @@
import 'package:flutter/material.dart';
class CarouselIndexProvider extends ChangeNotifier {
int _currentIndex = 0;
int get currentIndex => _currentIndex;
void updateIndex(int index) {
if (_currentIndex != index) {
_currentIndex = index;
notifyListeners();
}
}
}