buildDetail method
Implementation
Widget buildDetail(String type, String price) {
return Row(
children: [
const Spacer(
flex: 2,
),
Expanded(
flex: 2,
child: Text(
type,
textAlign: TextAlign.right,
style: const TextStyle(
fontSize: 10,
fontWeight: FontWeight.w400,
color: ColorHelper.neutralLightText,
),
),
),
Expanded(
child: Text(
price,
textAlign: TextAlign.right,
style: const TextStyle(
fontSize: 10,
fontWeight: FontWeight.w400,
color: ColorHelper.neutralLightText,
),
),
),
],
);
}