|
|
|
|
@ -12,21 +12,29 @@ class HomeItem extends StatelessWidget {
|
|
|
|
|
onTap: () => selectItem(context, id),
|
|
|
|
|
splashColor: Colors.red,
|
|
|
|
|
child: Container(
|
|
|
|
|
|
|
|
|
|
padding: EdgeInsets.all(5),
|
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
|
border: Border.all(
|
|
|
|
|
width: 1, // <--- border width here
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
child: Column(
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Container(
|
|
|
|
|
// decoration: BoxDecoration(color:Colors.red),
|
|
|
|
|
width: 10000,
|
|
|
|
|
height: 60,
|
|
|
|
|
child: CircleAvatar(
|
|
|
|
|
backgroundColor: Colors.white,
|
|
|
|
|
child: Container(
|
|
|
|
|
child: Image.asset(
|
|
|
|
|
image,
|
|
|
|
|
// width 50,
|
|
|
|
|
scale: 0.6,
|
|
|
|
|
color: Theme.of(context).primaryColor,
|
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
|
|
)),
|
|
|
|
|
Text(
|
|
|
|
|
title,
|
|
|
|
|
|