buildDetail method

Widget buildDetail(
  1. String type,
  2. String price
)

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,
          ),
        ),
      ),
    ],
  );
}