getAppBar method
Implementation
getAppBar(BuildContext context) {
return PreferredSize(
preferredSize: const Size.fromHeight(55.0),
child: Obx(() {
return Container(
child: controller.isSelected.value
? selectedAppBar(context)
: chatAppBar(context),
color: AppStyleConfig.chatPageStyle.appBarTheme.backgroundColor,
);
}),
);
}