13 lines
328 B
Dart
13 lines
328 B
Dart
import "package:gpt_markdown/gpt_markdown.dart";
|
|
import "package:shadcn_flutter/shadcn_flutter.dart";
|
|
|
|
class AssistantBubble extends StatelessWidget {
|
|
const AssistantBubble({super.key, required this.content});
|
|
|
|
final String content;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return GptMarkdown(content);
|
|
}
|
|
}
|