NEW: Mzansi AI Provider Setup

This commit is contained in:
2025-10-21 10:40:40 +02:00
parent c79904d132
commit 91241aa399
9 changed files with 169 additions and 189 deletions

View File

@@ -0,0 +1,20 @@
import 'package:flutter/material.dart';
class MzansiAiProvider extends ChangeNotifier {
int toolIndex;
String? startUpQuestion;
MzansiAiProvider({
this.toolIndex = 0,
});
void setToolIndex(int index) {
toolIndex = index;
notifyListeners();
}
void setStartUpQuestion(String? question) {
startUpQuestion = question;
notifyListeners();
}
}