buildPushNotification method
Implementation
Widget buildPushNotification(BuildContext context) {
return SizedBox(
height: 60.0,
child: Row(
children: [
AppText('Push Notifications', style: TextStyles.normal(context)),
const Spacer(),
Switch(
value: controller.pushNotificationsEnabled.value,
onChanged: (value) => controller.togglePushNotifications(),
)
],
),
);
}