Feat: API Documentation & process general queries

This commit is contained in:
siddu015
2025-03-12 02:34:48 +05:30
parent 08040d2efb
commit 8edf981628
5 changed files with 145 additions and 18 deletions

View File

@@ -126,17 +126,17 @@ class Dashboard extends ConsumerWidget {
),
),
// TODO: Release DashBot
// floatingActionButton: FloatingActionButton(
// onPressed: () => showModalBottomSheet(
// context: context,
// isScrollControlled: true,
// builder: (context) => const Padding(
// padding: EdgeInsets.all(16.0),
// child: DashBotWidget(),
// ),
// ),
// child: const Icon(Icons.help_outline),
// ),
floatingActionButton: FloatingActionButton(
onPressed: () => showModalBottomSheet(
context: context,
isScrollControlled: true,
builder: (context) => const Padding(
padding: EdgeInsets.all(16.0),
child: DashBotWidget(),
),
),
child: const Icon(Icons.help_outline),
),
);
}
}