fix : margin and padding

This commit is contained in:
2025-07-07 08:36:26 +03:30
parent 1c732efc2f
commit 21d3490d0c
4 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ import 'package:rasadyar_core/core.dart';
Widget buildPageRoute(List<String> route) {
return Padding(
padding: const EdgeInsets.fromLTRB(0, 4, 7, 8),
padding: const EdgeInsets.fromLTRB(0, 4, 7, 4),
child: Text(route.isEmpty ? 'خانه' : route.join("/"), style: AppFonts.yekan14.copyWith(color: AppColor.bgDark)),
);
}