import 'package:flutter/material.dart'; import '../../Utils/image_constant.dart'; import '../../Utils/size_utils.dart'; import '../../theme/app_style.dart'; import '../../widgets/app_bar/appbar_image.dart'; import '../../widgets/app_bar/appbar_title.dart'; import '../../widgets/app_bar/custom_app_bar.dart'; class AboutScreen extends StatelessWidget { @override Widget build(BuildContext context) { return Scaffold( appBar: CustomAppBar( height: getVerticalSize(49), leadingWidth: 40, leading: AppbarImage( height: getSize(24), width: getSize(24), svgPath: ImageConstant.imgArrowleftBlueGray900, margin: getMargin(left: 16, top: 12, bottom: 13), onTap: () { Navigator.pop(context); }), centerTitle: true, title: AppbarTitle(text: "About Us")), body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Text( 'About Us', style: AppStyle.txtGilroyBold18Bluegray900, ), const SizedBox(height: 20), Text( 'Create a new project if you have access, if you don\'t have access, then contact the admin.', textAlign: TextAlign.center, style: AppStyle.txtGilroyBold16BlueA700, ), ], ), ), ); } }