0% found this document useful (0 votes)
22 views2 pages

ListView - Builder and Column Error

Uploaded by

Arqan Purusa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views2 pages

ListView - Builder and Column Error

Uploaded by

Arqan Purusa
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

Column(

crossAxisAlignment: CrossAxisAlignment.start,
children: [
const DateWidget(),
const IncomeOutcomeOutputWidget(),
Expanded(
// menggunakan Expanded di setiap widget yang terdapat ListView.builder di dalam
Column
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 10),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const Text(
'Transactions',
style: TextStyle(fontSize: 25, fontWeight: FontWeight.w600),
),
Expanded(
// menggunakan Expanded di setiap widget yang terdapat ListView.builder di dalam
Column
child: ListView.builder(
itemCount: _expenseList.length,
itemBuilder: (context, index) {
return Container(
height: 70,
margin: const EdgeInsets.symmetric(vertical: 5),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(5),
color: Colors.white,
boxShadow:const [
BoxShadow(
color: Colors.black,
blurRadius: 0.2,
spreadRadius: 0.2,
),
],
),
child: ListTile(
leading: Icon(
expenseIcon[_expenseList[index].expense],
size: 30,
color: _expenseList[index].expense ==
ExpenseCategory.income
? Colors.green
: Colors.red,
),
title: Text(_expenseList[index].amount.toString()),
subtitle: Text(_expenseList[index].title),
trailing: Row(
mainAxisSize: MainAxisSize.min,
children: [
IconButton(
icon: const Icon(Icons.delete),
onPressed: () {
// Handle edit action
},
),
IconButton(
icon: const Icon(Icons.edit),
onPressed: () {
// Handle delete action
},
),
],
),
),
);
},
),
),
],
),

You might also like