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