rewardValues method

Column rewardValues(
  1. String label,
  2. String value
)

Implementation

Column rewardValues(String label, String value) {
  return Column(
    crossAxisAlignment: CrossAxisAlignment.start,
    children: [
      Text(
        label,
        style: TextStyle(
            color: ColorHelper.grey05,
            fontSize: 10.dp,
            fontWeight: FontWeight.w400,
            fontFamily: 'SFProDisplay'),
      ),
      8.dp.SpaceX,
      Text(
        value,
        style: TextStyle(
            color: ColorHelper.black01,
            fontSize: 10.dp,
            fontWeight: FontWeight.w500,
            fontFamily: 'SFProDisplay'),
      ),
    ],
  );
}