feat: integrate DashbotTab into mobile requests page

This commit is contained in:
Udhay-Adithya
2025-09-04 01:24:25 +05:30
parent ebd184e14a
commit eaa830ef21
5 changed files with 87 additions and 5 deletions

View File

@@ -93,17 +93,23 @@ class _DashbotHomePageState extends ConsumerState<DashbotHomePage> {
);
},
),
if (currentRequest?.httpResponseModel?.statusCode != null &&
currentRequest?.httpResponseModel?.statusCode == 200) ...[
],
),
if (currentRequest?.httpResponseModel?.statusCode != null &&
currentRequest?.httpResponseModel?.statusCode == 200) ...[
const SizedBox(height: 12),
Row(
children: const [
Expanded(
child: GenerateToolButton(),
),
SizedBox(width: 8),
Expanded(
child: AIGenerateUIButton(),
),
],
],
),
),
],
],
),
);