getActiveInfoBar method
Implementation
Widget getActiveInfoBar() {
return Container(
height: 34,
padding: const EdgeInsets.only(left: 10, right: 10),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Text(activityName, style: contentBlackBold14),
_getActiveTime(),
],
),
);
}