Skip to content

add expense design updation #13

Merged
merged 1 commit into from
Dec 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 26 additions & 12 deletions expense_tracker/lib/Screens/addexpenses.dart
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,6 @@ class _AddExpensesState extends State<AddExpenses> {
],
),
SizedBox(height: 20),
// Row(
// children: [
// Text("Date"),
// ],
// )
Row(
children: [
Padding(
Expand All @@ -140,14 +135,24 @@ class _AddExpensesState extends State<AddExpenses> {
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),
Expand All @@ -156,9 +161,18 @@ class _AddExpensesState extends State<AddExpenses> {
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),
Expand Down