Create placeholder SkillTreeView

This commit is contained in:
hunteraraujo
2023-09-08 08:53:49 -07:00
parent 97bd56b263
commit b00be97030
2 changed files with 24 additions and 2 deletions

View 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,
),
),
),
);
}
}