dynamic chat bubbles implemented along with conversation support. currently only hard-coded dummy data.

This commit is contained in:
Joshua
2024-07-08 19:48:14 -06:00
parent 7547fe110f
commit 78e7f4b896
11 changed files with 308 additions and 259 deletions
+1 -2
View File
@@ -53,13 +53,12 @@ void main() {
class MyApp extends ConsumerWidget {
MyApp({super.key});
final selectedIndexProvider = StateProvider<int>((_) => 2); // Initial state
final selectedIndexProvider = StateProvider<int>((_) => 1); // Initial state
// This list holds the pages to navigate between
final List<Widget> _pages = [
const Center(child: SettingsWidget()),
const Center(child: ConversationsListWidget()),
const Center(child: ConversationWidget()),
];
// This widget is the root of your application.