Files
Auto-GPT/lib/views/chat_view.dart
2023-08-20 16:33:53 +02:00

19 lines
376 B
Dart

import 'package:flutter/material.dart';
class ChatView extends StatelessWidget {
const ChatView({super.key});
@override
Widget build(BuildContext context) {
return Container(
color: Colors.green,
child: const Center(
child: Text(
'Chat',
style: TextStyle(fontSize: 24, color: Colors.white),
),
),
);
}
}