16 lines
320 B
Dart
16 lines
320 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ConversationBotConversationZone extends StatelessWidget {
|
|
const ConversationBotConversationZone({
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const Column(
|
|
children: [
|
|
Text('Conversation Zone'),
|
|
],
|
|
);
|
|
}
|
|
}
|