mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 22:14:28 +01:00
Create placeholder SkillTreeView
This commit is contained in:
21
frontend/lib/views/skill_tree/skill_tree_view.dart
Normal file
21
frontend/lib/views/skill_tree/skill_tree_view.dart
Normal file
@@ -0,0 +1,21 @@
|
||||
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,
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user