Skip to content

Commit 6024cfd

Browse files
committed
Add edit business account screen
1 parent b86dc35 commit 6024cfd

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/basic.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import 'package:basic/classes/size_units_class.dart';
22
import 'package:basic/constants/color_constants.dart';
33
import 'package:basic/constants/textstyle_constants.dart';
4+
import 'package:basic/screens/edit/edit_business_account_screen.dart';
45
import 'package:basic/screens/edit/edit_customer_screen.dart';
56
import 'package:basic/screens/edit/edit_expense_screen.dart';
67
import 'package:basic/screens/edit/edit_item1_screen.dart';
@@ -69,7 +70,7 @@ class Basic extends StatelessWidget {
6970
primaryColor: primaryColor,
7071
scaffoldBackgroundColor: desaturatedGreyColor,
7172
),
72-
home: EditPersonalAccountScreen(),
73+
home: EditBusinessAccountScreen(),
7374
debugShowCheckedModeBanner: false,
7475
);
7576
}

lib/screens/edit/edit_business_account_screen.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@ class EditBusinessAccountScreen extends StatelessWidget {
142142
SizedBox(height: 10),
143143
Container(
144144
padding: EdgeInsets.symmetric(
145-
vertical: 20,
145+
vertical: 10,
146146
horizontal: 20,
147147
),
148-
height: 60,
148+
// height: 60,
149149
decoration: BoxDecoration(
150150
color: whiteColor,
151151
borderRadius: BorderRadius.all(

0 commit comments

Comments
 (0)