buildAnalyticsItem method

Widget buildAnalyticsItem(
  1. String title,
  2. String value
)

Implementation

Widget buildAnalyticsItem(String title, String value) {
  return Column(
    mainAxisSize: MainAxisSize.min,
    crossAxisAlignment: CrossAxisAlignment.start,
    children: [
      SizedBox(
        width: 100,
        child: Text(
          title,
          overflow: TextOverflow.ellipsis,
          maxLines: 2,
          style: TextStyle(
              fontSize: navigator!.context.width < 1200 ? 12 : 14,
              fontWeight: FontWeight.w400,
              color: ColorHelper.grey02),
        ),
      ),
      const SizedBox(height: 4),
      Text(
        value,
        style: TextStyle(
          fontSize: navigator!.context.width < 1200 ? 18 : 36,
          fontWeight: FontWeight.w700,
          color: Colors.black,
        ),
      ),
    ],
  );
}