37 lines
903 B
Dart
37 lines
903 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:ride/constant/colors.dart';
|
|
import 'package:ride/constant/style.dart';
|
|
|
|
class NotificationPage extends StatelessWidget {
|
|
const NotificationPage({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(
|
|
'Notificatios'.tr,
|
|
style: AppStyle.title.copyWith(fontSize: 30),
|
|
),
|
|
),
|
|
body: SafeArea(
|
|
child: Center(
|
|
child: null,
|
|
)),
|
|
);
|
|
}
|
|
}
|