Remove comments

This commit is contained in:
hunteraraujo
2023-09-13 17:47:17 -07:00
parent 876fe5a590
commit 01b2892775

View File

@@ -50,12 +50,10 @@ class _TreeNodeViewState extends State<TreeNodeView> {
),
),
),
// Adding the node.data.name right beneath the rectangle
SizedBox(height: 4), // You can adjust the spacing as needed
SizedBox(height: 4),
Text(
widget.node.label, // Assuming node.data.name holds the name
style: TextStyle(
fontSize: 12), // You can adjust the styling as needed
widget.node.label,
style: TextStyle(fontSize: 12),
),
],
),