mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 06:24:20 +01:00
22 lines
464 B
Dart
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,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|