52 lines
1.3 KiB
Dart
52 lines
1.3 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
|
|
import '../../constant/colors.dart';
|
|
import '../../constant/style.dart';
|
|
|
|
class MyScaffold extends StatelessWidget {
|
|
const MyScaffold({
|
|
super.key,
|
|
required this.title,
|
|
this.action = const Icon(
|
|
Icons.clear,
|
|
color: AppColor.secondaryColor,
|
|
),
|
|
required this.isleading,
|
|
required this.body,
|
|
});
|
|
|
|
final String title;
|
|
final List<Widget> body;
|
|
final Widget action;
|
|
final bool isleading;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: AppColor.secondaryColor,
|
|
appBar: AppBar(
|
|
backgroundColor: AppColor.secondaryColor,
|
|
elevation: 0,
|
|
leading: isleading
|
|
? IconButton(
|
|
onPressed: () {
|
|
Get.back();
|
|
},
|
|
icon: const Icon(
|
|
Icons.arrow_back_ios_new,
|
|
color: AppColor.primaryColor,
|
|
),
|
|
)
|
|
: const SizedBox(),
|
|
actions: [action],
|
|
title: Text(
|
|
title,
|
|
style: AppStyle.title
|
|
.copyWith(fontSize: 20, fontWeight: FontWeight.bold),
|
|
),
|
|
),
|
|
body: SafeArea(child: Stack(children: body)));
|
|
}
|
|
}
|