notificaciones

This commit is contained in:
Juan Felipe Duarte
2023-06-16 10:00:20 -05:00
parent 743fa56fe7
commit f923a8f5bc
9 changed files with 149 additions and 11 deletions
+21
View File
@@ -8,6 +8,7 @@ import 'package:prosappco/src/components/photo_view.dart';
import 'package:prosappco/src/models/scores_model.dart';
import 'package:prosappco/src/models/user_model.dart';
import 'package:prosappco/src/screens/configuracion.dart';
import 'package:prosappco/src/screens/local_notification.dart';
import 'package:prosappco/src/screens/messages_user.dart';
import 'package:prosappco/src/screens/professional_profile_web.dart';
import 'package:prosappco/src/screens/profile.dart';
@@ -232,6 +233,26 @@ class _DrawerMenuState extends State<DrawerMenu> {
style: TextStyle(fontSize: 15),
),
),
ListTile(
onTap: () {
Navigator.push(
context,
CupertinoPageRoute(
builder: (BuildContext context) {
return const LocalNotificationScreen();
},
),
);
},
leading: const Icon(
Icons.notification_add_outlined,
color: Colors.black,
),
title: const Text(
'Notificación',
style: TextStyle(fontSize: 15),
),
),
Builder(builder: (BuildContext context) {
return ListTile(
onTap: () {
+73
View File
@@ -0,0 +1,73 @@
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_dialogs/flutter_dialogs.dart';
import 'package:prosappco/src/components/pop_appbar.dart';
import 'package:prosappco/src/services/local_notifications.dart';
class LocalNotificationScreen extends StatelessWidget {
const LocalNotificationScreen({Key? key}) : super(key: key);
void showCustomDialog(BuildContext context, String title, String content) {
showPlatformDialog(
context: context,
builder: (_) => BasicDialogAlert(
title: Text(title),
content: Text(content),
actions: <Widget>[
BasicDialogAction(
onPressed: () {
Navigator.pop(context);
},
title: const Text('Cerrar'),
),
],
),
);
}
@override
Widget build(BuildContext context) {
if (kIsWeb) {
return Scaffold(
appBar: PopAppbar(
onPressed: () {
Navigator.pop(context);
},
label: 'Notificaciones',
),
body: Center(
child: ElevatedButton(
onPressed: () {
showCustomDialog(
context,
'Nueva notificación!',
'Esta es una notificación de Flutter',
);
},
child: const Text('Lanzar notificación'),
),
),
);
} else {
return Scaffold(
appBar: PopAppbar(
onPressed: () {
Navigator.pop(context);
},
label: 'Notificaciones',
),
body: Center(
child: ElevatedButton(
onPressed: () {
showNotification(
'Nueva notificación!',
'Esta es una notificación de prosapp!',
);
},
child: const Text('Lanzar notificación'),
),
),
);
}
}
}
+9 -7
View File
@@ -1,5 +1,3 @@
import 'dart:convert';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_messaging/firebase_messaging.dart';
import 'package:firebase_storage/firebase_storage.dart';
@@ -11,19 +9,16 @@ import 'package:geocoding/geocoding.dart';
import 'package:geolocator/geolocator.dart';
import 'package:get/get.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
import 'package:prosappco/constansts.dart';
import 'package:prosappco/src/authentication/authentication_repository.dart';
import 'package:prosappco/src/components/drawer_menu.dart';
import 'package:prosappco/src/components/network_utility.dart';
import 'package:prosappco/src/models/event_model.dart';
import 'package:prosappco/src/models/user_model.dart';
import 'package:prosappco/src/screens/local_notification.dart';
import 'package:prosappco/src/screens/professional.dart';
import 'package:intl/intl.dart';
import 'package:prosappco/src/screens/profile.dart';
import 'package:prosappco/src/screens/service_after.dart';
import 'package:prosappco/src/screens/service_type.dart';
import 'package:flutter/foundation.dart';
import 'package:http/http.dart' as http;
import 'package:prosappco/src/screens/ubicacion.dart';
class ServiceScreen extends StatefulWidget {
@@ -409,7 +404,14 @@ class _ServiceScreenState extends State<ServiceScreen> {
),
const SizedBox(height: 20.0),
ElevatedButton(
onPressed: () {},
onPressed: () {
Navigator.push(
context,
MaterialPageRoute(
builder: (context) => LocalNotificationScreen(),
),
);
},
style: ElevatedButton.styleFrom(
backgroundColor: const Color(0xFF2BA4EC),
shape: RoundedRectangleBorder(
+27
View File
@@ -0,0 +1,27 @@
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
final FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin =
FlutterLocalNotificationsPlugin();
Future<void> initNotifications() async {
const AndroidInitializationSettings initializationSettingsAndroid =
AndroidInitializationSettings('@mipmap/ic_launcher');
const InitializationSettings initializationSettings = InitializationSettings(
android: initializationSettingsAndroid,
);
await flutterLocalNotificationsPlugin.initialize(initializationSettings);
}
Future<void> showNotification(String title, String body) async {
const AndroidNotificationDetails androidNotificationDetails =
AndroidNotificationDetails('your channel id', 'your channel name',
importance: Importance.max, priority: Priority.high);
const NotificationDetails notificationDetails =
NotificationDetails(android: androidNotificationDetails);
await flutterLocalNotificationsPlugin.show(
1, title, body, notificationDetails);
}