buildNameWidget method

Widget buildNameWidget()

Implementation

Widget buildNameWidget() {
  return Obx(() {
    return Padding(
      padding: const EdgeInsets.only(bottom: 10),
      child: Text(
        '${controller.selectedSubsccriber.value?.firstName ?? ''} ${controller.selectedSubsccriber.value?.lastName}',
        style: TextStyle(
          fontSize: 24,
          fontWeight: FontWeight.bold,
          color: Colors.blue[900],
        ),
      ),
    );
  });
}