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( // TODO: Release DashBot
onPressed: () => showModalBottomSheet( // floatingActionButton: FloatingActionButton(
context: context, // onPressed: () => showModalBottomSheet(
isScrollControlled: true, // context: context,
builder: (context) => const Padding( // isScrollControlled: true,
padding: EdgeInsets.all(16.0), // builder: (context) => const Padding(
child: DashBotWidget(), // padding: EdgeInsets.all(16.0),
), // child: DashBotWidget(),
), // ),
child: const Icon(Icons.help_outline), // ),
), // child: const Icon(Icons.help_outline),
// ),
); );
} }
} }