feat : Page Route Widget

This commit is contained in:
2025-06-30 09:33:14 +03:30
parent 443b9f489c
commit 7cec6bd084
2 changed files with 184 additions and 175 deletions

View File

@@ -0,0 +1,6 @@
import 'package:flutter/cupertino.dart';
import 'package:rasadyar_core/core.dart';
Text buildPageRoute(List<String> route) {
return Text(route.isEmpty ? 'خانه' : route.join("/"), style: AppFonts.yekan14.copyWith(color: AppColor.bgDark));
}