44 lines
1.0 KiB
Dart
44 lines
1.0 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import '../../constant/colors.dart';
|
|
import '../../constant/style.dart';
|
|
|
|
class MyScafolld extends StatelessWidget {
|
|
const MyScafolld({
|
|
super.key,
|
|
required this.title,
|
|
required this.body,
|
|
this.action = const Icon(Icons.clear),
|
|
});
|
|
|
|
final String title;
|
|
final Widget body;
|
|
final Widget action;
|
|
|
|
@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,
|
|
),
|
|
),
|
|
actions: [action],
|
|
title: Text(
|
|
title,
|
|
style: AppStyle.title.copyWith(fontSize: 30),
|
|
),
|
|
),
|
|
body: SafeArea(child: Stack(children: [body])));
|
|
}
|
|
}
|