35 lines
849 B
Dart
35 lines
849 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import '../../../constant/colors.dart';
|
|
import '../../../constant/style.dart';
|
|
|
|
class PassengerProfilePage extends StatelessWidget {
|
|
const PassengerProfilePage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: AppColor.secondaryColor,
|
|
appBar: AppBar(
|
|
backgroundColor: AppColor.secondaryColor,
|
|
elevation: 0,
|
|
leading: IconButton(
|
|
onPressed: () {
|
|
Get.back();
|
|
},
|
|
icon: const Icon(
|
|
Icons.arrow_back_ios_new,
|
|
color: AppColor.primaryColor,
|
|
),
|
|
),
|
|
title: Text(
|
|
'My Profile'.tr,
|
|
style: AppStyle.title.copyWith(fontSize: 30),
|
|
),
|
|
),
|
|
body: Container(),
|
|
);
|
|
}
|
|
}
|