TF-4002 Apply new design for folder creation modal on web

This commit is contained in:
dab246
2025-09-04 15:06:28 +07:00
committed by Dat H. Pham
parent c09a2c92b2
commit 36e58fc990
23 changed files with 689 additions and 498 deletions
@@ -52,24 +52,20 @@ class _TreeViewData extends StatelessWidget {
}
class TreeViewChild {
final BuildContext context;
final bool? isExpanded;
final Widget parent;
final List<Widget> children;
final VoidCallback? onTap;
final EdgeInsetsGeometry? paddingChild;
TreeViewChild(
this.context,
{
required this.parent,
required this.children,
this.isExpanded,
this.onTap,
this.paddingChild,
Key? key,
}
);
TreeViewChild({
required this.parent,
required this.children,
this.isExpanded,
this.onTap,
this.paddingChild,
Key? key,
});
Widget build() {
return Column(