step 15 : remove padding report

This commit is contained in:
sindhu
2024-01-16 09:03:44 +07:00
parent 088c18f536
commit a317946fc2
7 changed files with 234 additions and 147 deletions

View File

@@ -0,0 +1,31 @@
import 'package:flutter/material.dart';
import '../../app/constant.dart';
import '../../widget/custom_drawer.dart';
class ChangeCompanyScreen extends StatelessWidget {
const ChangeCompanyScreen({super.key});
@override
Widget build(BuildContext context) {
return Padding(
padding: EdgeInsets.only(
top: Constant.getActualYPhone(context: context, y: 30),
),
child: Scaffold(
appBar: AppBar(
// centerTitle: true,
title: Text(
'Change Company',
style: TextStyle(color: Constant.textWhite),
),
backgroundColor: Constant.pcBtnBackgroundColor,
iconTheme: IconThemeData(
color: Constant.textWhite,
),
),
drawer: CustomDrawer(),
),
);
}
}