Hide DashBot

This commit is contained in:
Ashita Prasad
2025-03-07 06:50:19 +05:30
parent da7478f41e
commit 08040d2efb

View File

@ -125,17 +125,18 @@ class Dashboard extends ConsumerWidget {
],
),
),
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),
),
// 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),
// ),
);
}
}