feat(ai-scribe): Allow scroll the prompt's response is long
This commit is contained in:
+6
@@ -24,11 +24,17 @@ class AiScribeSuggestionSuccess extends StatelessWidget {
|
|||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Flexible(
|
Flexible(
|
||||||
|
child: SingleChildScrollView(
|
||||||
|
physics: const ClampingScrollPhysics(),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsetsDirectional.only(end: 8),
|
||||||
child: Text(
|
child: Text(
|
||||||
suggestionText,
|
suggestionText,
|
||||||
style: AIScribeTextStyles.suggestionContent,
|
style: AIScribeTextStyles.suggestionContent,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
AiScribeSuggestionSuccessListActions(
|
AiScribeSuggestionSuccessListActions(
|
||||||
imagePaths: imagePaths,
|
imagePaths: imagePaths,
|
||||||
suggestionText: suggestionText,
|
suggestionText: suggestionText,
|
||||||
|
|||||||
Reference in New Issue
Block a user