Files
rasadyar_application/packages/chicken/lib/presentation/widget/page_route.dart

13 lines
347 B
Dart
Raw Normal View History

2025-06-30 09:33:14 +03:30
import 'package:flutter/cupertino.dart';
import 'package:rasadyar_core/core.dart';
2025-06-30 10:36:30 +03:30
Widget buildPageRoute(List<String> route) {
return Padding(
2025-07-07 08:36:26 +03:30
padding: const EdgeInsets.fromLTRB(0, 4, 7, 4),
2025-07-14 09:27:13 +03:30
child: Text(
route.isEmpty ? 'خانه' : route.join(" > "),
style: AppFonts.yekan14.copyWith(color: AppColor.bgDark),
),
2025-06-30 10:36:30 +03:30
);
2025-06-30 09:33:14 +03:30
}