2025-10-27 15:44:13 +05:30
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
|
|
2025-10-28 19:54:12 +05:30
|
|
|
Widget backWidget(BuildContext context, String title, Color? textColor){
|
2025-10-27 15:44:13 +05:30
|
|
|
return Row(
|
|
|
|
|
children: [
|
|
|
|
|
GestureDetector(
|
|
|
|
|
onTap: () {
|
|
|
|
|
Navigator.pop(context);
|
|
|
|
|
},
|
2025-10-28 19:54:12 +05:30
|
|
|
child: Icon(Icons.arrow_back, size: 24.sp, color: textColor ?? Colors.black),
|
2025-10-27 15:44:13 +05:30
|
|
|
),
|
|
|
|
|
SizedBox(width: 8.w),
|
|
|
|
|
Text(
|
|
|
|
|
title,
|
|
|
|
|
style: TextStyle(
|
|
|
|
|
fontSize: 12.sp,
|
|
|
|
|
fontWeight: FontWeight.w500,
|
2025-10-28 19:54:12 +05:30
|
|
|
color: textColor ?? Colors.black
|
2025-10-27 15:44:13 +05:30
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}
|