diff --git a/expense_tracker/lib/Screens/addexpenses.dart b/expense_tracker/lib/Screens/addexpenses.dart index db84793..df09948 100644 --- a/expense_tracker/lib/Screens/addexpenses.dart +++ b/expense_tracker/lib/Screens/addexpenses.dart @@ -125,11 +125,6 @@ class _AddExpensesState extends State { ], ), SizedBox(height: 20), - // Row( - // children: [ - // Text("Date"), - // ], - // ) Row( children: [ Padding( @@ -140,14 +135,24 @@ class _AddExpensesState extends State { color: Color.fromARGB( 255, 255, 255, 255)))), SizedBox(width: 30), - Text("hi", - style: TextStyle( - color: Color.fromARGB(255, 255, 255, 255))) + // Text("hi", + // style: TextStyle( + // color: Color.fromARGB(255, 255, 255, 255))) + Container( + // height: 70, + width: 120, + child: TextFormField( + decoration: const InputDecoration( + border: UnderlineInputBorder(), + labelText: 'Merchant name', + ), + ), + ), ], ), SizedBox(height: 20), Row( - children: const [ + children: [ Padding( padding: EdgeInsetsDirectional.fromSTEB(20, 0, 0, 0), @@ -156,9 +161,18 @@ class _AddExpensesState extends State { color: Color.fromARGB( 255, 255, 255, 255)))), SizedBox(width: 20), - Text("hi", - style: TextStyle( - color: Color.fromARGB(255, 255, 255, 255))) + // Text("hi", + // style: TextStyle( + // color: Color.fromARGB(255, 255, 255, 255))) + Container( + width: 120, + child: TextFormField( + decoration: const InputDecoration( + border: UnderlineInputBorder(), + labelText: 'Description', + ), + ), + ), ], ), SizedBox(height: 20),