Files
Auto-GPT/frontend/lib/views/skill_tree/skill_tree_view.dart
2023-09-08 08:53:49 -07:00

22 lines
464 B
Dart

import 'package:flutter/material.dart';
class SkillTreeView extends StatelessWidget {
const SkillTreeView({super.key});
@override
Widget build(BuildContext context) {
return Container(
color: Colors.blue[100], // Background color
child: const Center(
child: Text(
'SkillTreeView',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.bold,
),
),
),
);
}
}