31 lines
646 B
Dart
31 lines
646 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:ride/constant/colors.dart';
|
|
|
|
import '../widgets/my_scafold.dart';
|
|
|
|
class NotificationPage extends StatelessWidget {
|
|
const NotificationPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MyScafolld(
|
|
title: 'Notifications',
|
|
action: IconButton(
|
|
onPressed: () {},
|
|
icon: const Icon(
|
|
Icons.add,
|
|
color: AppColor.primaryColor,
|
|
),
|
|
),
|
|
body: Center(
|
|
child: TextButton(
|
|
onPressed: () {},
|
|
child: Text(
|
|
"Text Button",
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|