8-12/
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:ride/constant/colors.dart';
|
||||
|
||||
import '../widgets/my_scafold.dart';
|
||||
@@ -9,6 +10,7 @@ class NotificationPage extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MyScafolld(
|
||||
isleading: true,
|
||||
title: 'Notifications',
|
||||
action: IconButton(
|
||||
onPressed: () {},
|
||||
@@ -17,14 +19,21 @@ class NotificationPage extends StatelessWidget {
|
||||
color: AppColor.primaryColor,
|
||||
),
|
||||
),
|
||||
body: Center(
|
||||
child: TextButton(
|
||||
onPressed: () {},
|
||||
child: Text(
|
||||
"Text Button",
|
||||
),
|
||||
body: [
|
||||
Container(
|
||||
color: AppColor.accentColor.withOpacity(.7),
|
||||
),
|
||||
),
|
||||
Positioned(
|
||||
top: 100,
|
||||
bottom: 100,
|
||||
left: 50,
|
||||
right: 50,
|
||||
child: Container(
|
||||
height: Get.height * .6,
|
||||
color: AppColor.secondaryColor,
|
||||
),
|
||||
)
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user