7 lines
247 B
Dart
7 lines
247 B
Dart
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));
|
|
}
|