TF-467 Apply new UI for mailbox mobile

This commit is contained in:
dab246
2022-04-08 12:43:45 +07:00
committed by Dat H. Pham
parent 3eb5f31dcd
commit 7b5a2dd820
22 changed files with 1058 additions and 435 deletions
@@ -83,7 +83,9 @@ class TreeViewChild {
AnimatedContainer(
duration: Duration(milliseconds: 400),
child: isExpanded!
? Column(mainAxisSize: MainAxisSize.min, children: children)
? Column(
mainAxisSize: MainAxisSize.min,
children: children.map((child) => Padding(padding: EdgeInsets.only(left: 20), child: child)).toList())
: Offstage(),
),
],