fix:导航栏交互和UI
This commit is contained in:
@@ -141,7 +141,19 @@ class _MenuGroup extends StatelessWidget {
|
||||
Widget build(BuildContext context) {
|
||||
return AppCard(
|
||||
padding: EdgeInsets.zero,
|
||||
child: Column(children: children),
|
||||
child: Column(
|
||||
children: [
|
||||
for (var index = 0; index < children.length; index++) ...[
|
||||
children[index],
|
||||
if (index != children.length - 1)
|
||||
const Divider(
|
||||
height: 1,
|
||||
thickness: 1,
|
||||
color: YantingColors.border,
|
||||
),
|
||||
],
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user