fix : page route widget and other page

This commit is contained in:
2025-07-14 09:27:13 +03:30
parent 6567f5561b
commit 963630602e
4 changed files with 6 additions and 10 deletions

View File

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