SSE: SSEDisplay Implemented along with SSE ResponseBodyView Type

This commit is contained in:
Manas Hejmadi
2025-06-29 17:07:28 +05:30
parent 882b393fdd
commit 383b6ad4bc
5 changed files with 102 additions and 14 deletions

View File

@@ -16,8 +16,8 @@ void main() {
theme: kThemeDataLight,
home: Scaffold(
body: SendButton(
isWorking: false,
isStreaming: false,
isWorking: false,
onTap: () => sendPressed = true,
onCancel: () => cancelPressed = true,
),
@@ -46,8 +46,8 @@ void main() {
theme: kThemeDataLight,
home: Scaffold(
body: SendButton(
isWorking: true,
isStreaming: false,
isWorking: true,
onTap: () => sendPressed = true,
onCancel: () => cancelPressed = true,
),