Files
Auto-GPT/lib/views/task_view.dart
2023-08-20 20:15:15 +02:00

19 lines
376 B
Dart

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