showNotificationDialog -> ok
This commit is contained in:
parent
ee7d4f4dff
commit
7ff9f35a14
|
@ -1,22 +1,16 @@
|
||||||
import 'dart:developer';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
// import 'package:hub/components/organisms/bottom_arrow_linked_locals/bottom_arrow_linked_locals_component_widget.dart';
|
// import 'package:hub/components/organisms/bottom_arrow_linked_locals/bottom_arrow_linked_locals_component_widget.dart';
|
||||||
import 'package:hub/backend/api_requests/api_calls.dart';
|
import 'package:hub/backend/api_requests/api_calls.dart';
|
||||||
import 'package:hub/backend/api_requests/api_manager.dart';
|
|
||||||
import 'package:hub/components/molecular_components/option_selection_modal/option_selection_modal_widget.dart';
|
import 'package:hub/components/molecular_components/option_selection_modal/option_selection_modal_widget.dart';
|
||||||
import 'package:hub/components/molecular_components/throw_exception/throw_exception_widget.dart';
|
|
||||||
import 'package:hub/components/organism_components/bottom_arrow_linked_locals_component/bottom_arrow_linked_locals_component_widget.dart';
|
import 'package:hub/components/organism_components/bottom_arrow_linked_locals_component/bottom_arrow_linked_locals_component_widget.dart';
|
||||||
import 'package:hub/custom_code/actions/get_dev_u_u_i_d.dart';
|
import 'package:hub/custom_code/actions/get_dev_u_u_i_d.dart';
|
||||||
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
|
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
|
||||||
import 'package:hub/flutter_flow/flutter_flow_util.dart';
|
import 'package:hub/flutter_flow/flutter_flow_util.dart';
|
||||||
import 'package:hub/flutter_flow/nav/nav.dart';
|
import 'package:hub/flutter_flow/nav/nav.dart';
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:hub/flutter_flow/random_data_util.dart';
|
import 'package:hub/flutter_flow/random_data_util.dart';
|
||||||
import 'package:hub/pages/home_page/home_page_model.dart';
|
import 'package:hub/pages/home_page/home_page_model.dart';
|
||||||
import 'package:hub/shared/utils/dialog_util.dart';
|
import 'package:hub/shared/utils/dialog_util.dart';
|
||||||
import 'package:qr_flutter/qr_flutter.dart';
|
import 'package:qr_flutter/qr_flutter.dart';
|
||||||
|
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
import '../shared/utils/log_util.dart';
|
import '../shared/utils/log_util.dart';
|
||||||
|
|
|
@ -7,13 +7,12 @@ import 'dart:io';
|
||||||
import 'dart:typed_data';
|
import 'dart:typed_data';
|
||||||
|
|
||||||
import 'package:collection/collection.dart';
|
import 'package:collection/collection.dart';
|
||||||
import 'package:http/http.dart' as http;
|
|
||||||
import 'package:equatable/equatable.dart';
|
import 'package:equatable/equatable.dart';
|
||||||
|
import 'package:http/http.dart' as http;
|
||||||
import 'package:http_parser/http_parser.dart';
|
import 'package:http_parser/http_parser.dart';
|
||||||
import 'package:mime_type/mime_type.dart';
|
import 'package:mime_type/mime_type.dart';
|
||||||
|
|
||||||
import '/flutter_flow/uploaded_file.dart';
|
import '/flutter_flow/uploaded_file.dart';
|
||||||
|
|
||||||
import 'get_streamed_response.dart';
|
import 'get_streamed_response.dart';
|
||||||
|
|
||||||
enum ApiCallType {
|
enum ApiCallType {
|
||||||
|
@ -411,7 +410,6 @@ class ApiManager {
|
||||||
ApiCallOptions? options,
|
ApiCallOptions? options,
|
||||||
http.Client? client,
|
http.Client? client,
|
||||||
}) async {
|
}) async {
|
||||||
|
|
||||||
final callOptions = options ??
|
final callOptions = options ??
|
||||||
ApiCallOptions(
|
ApiCallOptions(
|
||||||
callName: callName,
|
callName: callName,
|
||||||
|
@ -512,6 +510,8 @@ class ApiManager {
|
||||||
result = ApiCallResponse(null, {}, -1, exception: e);
|
result = ApiCallResponse(null, {}, -1, exception: e);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
log('Params: $params');
|
||||||
|
log('JsonBody: ${result.jsonBody}');
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,14 +7,17 @@ import 'package:hub/shared/utils/log_util.dart';
|
||||||
|
|
||||||
import 'notification_service.dart';
|
import 'notification_service.dart';
|
||||||
|
|
||||||
|
|
||||||
Future<void> handleMessage(RemoteMessage message) async {
|
Future<void> handleMessage(RemoteMessage message) async {
|
||||||
NotificationService.show(title: message.notification!.title!, body: message.notification!.body!, payload: Map<String,String>.from(message.data));
|
NotificationService.show(
|
||||||
|
title: message.notification!.title!,
|
||||||
|
body: message.notification!.body!,
|
||||||
|
payload: Map<String, String>.from(message.data));
|
||||||
}
|
}
|
||||||
|
|
||||||
class FirebaseMessagingService {
|
class FirebaseMessagingService {
|
||||||
// Singleton instance
|
// Singleton instance
|
||||||
static final FirebaseMessagingService _instance = FirebaseMessagingService._internal();
|
static final FirebaseMessagingService _instance =
|
||||||
|
FirebaseMessagingService._internal();
|
||||||
|
|
||||||
// Factory constructor
|
// Factory constructor
|
||||||
factory FirebaseMessagingService() => _instance;
|
factory FirebaseMessagingService() => _instance;
|
||||||
|
@ -29,6 +32,9 @@ class FirebaseMessagingService {
|
||||||
|
|
||||||
_refreshToken();
|
_refreshToken();
|
||||||
|
|
||||||
|
_firebaseMessaging.setAutoInitEnabled(false);
|
||||||
|
_firebaseMessaging.pluginConstants;
|
||||||
|
|
||||||
FirebaseMessaging.onBackgroundMessage(handleMessage);
|
FirebaseMessaging.onBackgroundMessage(handleMessage);
|
||||||
|
|
||||||
FirebaseMessaging.onMessage.listen((RemoteMessage message) {
|
FirebaseMessaging.onMessage.listen((RemoteMessage message) {
|
||||||
|
@ -43,14 +49,16 @@ class FirebaseMessagingService {
|
||||||
if (deviceToken != null) {
|
if (deviceToken != null) {
|
||||||
AppState().token = deviceToken;
|
AppState().token = deviceToken;
|
||||||
|
|
||||||
final ApiCallResponse? response = await PhpGroup.updToken.call(token: AppState().token, devid: AppState().devUUID, useruuid: AppState().userUUID);
|
final ApiCallResponse? response = await PhpGroup.updToken.call(
|
||||||
|
token: AppState().token,
|
||||||
|
devid: AppState().devUUID,
|
||||||
|
useruuid: AppState().userUUID);
|
||||||
|
|
||||||
if (PhpGroup.updToken.error((response?.jsonBody ?? '')) == false) {
|
if (PhpGroup.updToken.error((response?.jsonBody ?? '')) == false) {
|
||||||
log('Token Atualizado com Sucesso!');
|
log('Token Atualizado com Sucesso!');
|
||||||
} else {
|
} else {
|
||||||
log('Falha ao Atualizar Token: ${response?.jsonBody}');
|
log('Falha ao Atualizar Token: ${response?.jsonBody}');
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
log('Falha ao Pegar Token do Firebase');
|
log('Falha ao Pegar Token do Firebase');
|
||||||
}
|
}
|
||||||
|
@ -62,5 +70,4 @@ class FirebaseMessagingService {
|
||||||
void _refreshToken() {
|
void _refreshToken() {
|
||||||
_firebaseMessaging.onTokenRefresh.listen((token) => updateDeviceToken);
|
_firebaseMessaging.onTokenRefresh.listen((token) => updateDeviceToken);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|
|
@ -2,7 +2,15 @@ import 'dart:developer';
|
||||||
|
|
||||||
import 'package:awesome_notifications/awesome_notifications.dart';
|
import 'package:awesome_notifications/awesome_notifications.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:hub/actions/actions.dart';
|
||||||
|
import 'package:hub/components/templates_components/access_notification_modal_template_component/access_notification_modal_template_component_widget.dart';
|
||||||
|
import 'package:hub/components/templates_components/details_component/details_component_widget.dart';
|
||||||
|
import 'package:hub/components/templates_components/message_notificaion_modal_template_component/message_notification_widget.dart';
|
||||||
|
import 'package:hub/flutter_flow/flutter_flow_icon_button.dart';
|
||||||
|
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
|
||||||
import 'package:hub/flutter_flow/flutter_flow_util.dart';
|
import 'package:hub/flutter_flow/flutter_flow_util.dart';
|
||||||
|
import 'package:hub/flutter_flow/flutter_flow_widgets.dart';
|
||||||
|
import 'package:hub/shared/utils/dialog_util.dart';
|
||||||
|
|
||||||
class NotificationService {
|
class NotificationService {
|
||||||
static Future<void> initialize() async {
|
static Future<void> initialize() async {
|
||||||
|
@ -43,25 +51,282 @@ class NotificationService {
|
||||||
onDismissActionReceivedMethod: onDismissActionReceivedMethod);
|
onDismissActionReceivedMethod: onDismissActionReceivedMethod);
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<void> onActionReceivedMethod(ReceivedAction receivedAction) async {
|
static Future<void> onActionReceivedMethod(
|
||||||
|
ReceivedAction receivedAction) async {
|
||||||
// debugPrint('onActionReceivedMethod');
|
// debugPrint('onActionReceivedMethod');
|
||||||
// final payload = receivedAction.payload ?? {};
|
// final payload = receivedAction.payload ?? {};
|
||||||
// if (payload['navigate'] == 'true') {
|
// if (payload['navigate'] == 'true') {
|
||||||
// locator<NavigationService>().navigateToWithParams(notificationRoute, {'title': payload['title']!, 'body': payload['body']!});
|
// locator<NavigationService>().navigateToWithParams(notificationRoute, {'title': payload['title']!, 'body': payload['body']!});
|
||||||
// }
|
// }
|
||||||
|
final payload = receivedAction.payload ?? {};
|
||||||
|
final extra = receivedAction.body;
|
||||||
|
final handleClick = payload['click_action'];
|
||||||
|
|
||||||
|
final localId = jsonDecode(payload['local']!)['CLI_ID'];
|
||||||
|
// try {
|
||||||
|
// localId = jsonDecode(payload['local']!)['CLI_ID'];
|
||||||
|
// } catch (e) {
|
||||||
|
// localId = payload['local']['CLI_ID'].toString();
|
||||||
|
// }
|
||||||
|
|
||||||
|
log('payload: $payload');
|
||||||
|
log('extra: $extra');
|
||||||
|
switch (handleClick) {
|
||||||
|
case 'visit_request':
|
||||||
|
showDialog(
|
||||||
|
context: AppState().context!,
|
||||||
|
barrierColor: Colors.transparent,
|
||||||
|
barrierDismissible: true,
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
return Dialog(
|
||||||
|
child: SizedBox(
|
||||||
|
width: MediaQuery.of(context).size.width * 0.8,
|
||||||
|
height: MediaQuery.of(context).size.height * 0.6,
|
||||||
|
child: DetailsComponentWidget(
|
||||||
|
buttons: [
|
||||||
|
FlutterFlowIconButton(
|
||||||
|
icon: const Icon(Icons.done),
|
||||||
|
onPressed: () async {
|
||||||
|
showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) {
|
||||||
|
return AlertDialog(
|
||||||
|
title: Text(
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
ptText: 'Aprovar Visita',
|
||||||
|
enText: 'Approve Visit',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
content: Text(
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
ptText:
|
||||||
|
'Você tem certeza que deseja aprovar essa visita?',
|
||||||
|
enText:
|
||||||
|
'Are you sure you want to approve this visit?',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
backgroundColor: FlutterFlowTheme.of(context)
|
||||||
|
.primaryBackground,
|
||||||
|
actions: [
|
||||||
|
FFButtonWidget(
|
||||||
|
text: FFLocalizations.of(context)
|
||||||
|
.getVariableText(
|
||||||
|
enText: 'No',
|
||||||
|
ptText: 'Não',
|
||||||
|
),
|
||||||
|
onPressed: () {
|
||||||
|
Navigator.pop(context);
|
||||||
|
},
|
||||||
|
options: FFButtonOptions(
|
||||||
|
width: 100,
|
||||||
|
height: 40,
|
||||||
|
color: FlutterFlowTheme.of(context)
|
||||||
|
.primaryBackground,
|
||||||
|
textStyle: TextStyle(
|
||||||
|
color: FlutterFlowTheme.of(context)
|
||||||
|
.primaryText,
|
||||||
|
),
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context)
|
||||||
|
.primaryBackground,
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
borderRadius:
|
||||||
|
BorderRadius.circular(10)),
|
||||||
|
),
|
||||||
|
FFButtonWidget(
|
||||||
|
text: FFLocalizations.of(context)
|
||||||
|
.getVariableText(
|
||||||
|
enText: 'Yes',
|
||||||
|
ptText: 'Sim',
|
||||||
|
),
|
||||||
|
onPressed: () async {
|
||||||
|
log("payload: $payload");
|
||||||
|
await answersRequest
|
||||||
|
.call(
|
||||||
|
context,
|
||||||
|
payload['referencia'].toString(),
|
||||||
|
'L',
|
||||||
|
'Mensagem',
|
||||||
|
payload['idVisitante'].toString(),
|
||||||
|
)
|
||||||
|
.then((value) {
|
||||||
|
if (value) {
|
||||||
|
Navigator.pop(context);
|
||||||
|
Navigator.pop(context);
|
||||||
|
} else {
|
||||||
|
Navigator.pop(context);
|
||||||
|
Navigator.pop(context);
|
||||||
|
DialogUtil.errorDefault(context);
|
||||||
|
}
|
||||||
|
}).catchError((e) {
|
||||||
|
Navigator.pop(context);
|
||||||
|
Navigator.pop(context);
|
||||||
|
DialogUtil.errorDefault(context);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
options: FFButtonOptions(
|
||||||
|
width: 100,
|
||||||
|
height: 40,
|
||||||
|
color: FlutterFlowTheme.of(context)
|
||||||
|
.primaryBackground,
|
||||||
|
textStyle: TextStyle(
|
||||||
|
color: FlutterFlowTheme.of(context)
|
||||||
|
.primaryText,
|
||||||
|
),
|
||||||
|
borderSide: BorderSide(
|
||||||
|
color: FlutterFlowTheme.of(context)
|
||||||
|
.primaryBackground,
|
||||||
|
width: 1,
|
||||||
|
),
|
||||||
|
borderRadius: BorderRadius.circular(10),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
FlutterFlowIconButton(
|
||||||
|
icon: const Icon(Icons.close),
|
||||||
|
onPressed: () async {
|
||||||
|
showAlertDialog(
|
||||||
|
context,
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
ptText: 'Bloquear Visita',
|
||||||
|
enText: 'Block Visit',
|
||||||
|
),
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
ptText:
|
||||||
|
'Você tem certeza que deseja bloquear essa visita?',
|
||||||
|
enText:
|
||||||
|
'Are you sure you want to block this visit?',
|
||||||
|
), () async {
|
||||||
|
await answersRequest
|
||||||
|
.call(
|
||||||
|
context,
|
||||||
|
payload['referencia'].toString(),
|
||||||
|
'B',
|
||||||
|
'Mensagem',
|
||||||
|
payload['idVisitante'].toString(),
|
||||||
|
)
|
||||||
|
.then((value) {
|
||||||
|
if (value) {
|
||||||
|
Navigator.pop(context);
|
||||||
|
Navigator.pop(context);
|
||||||
|
} else {
|
||||||
|
Navigator.pop(context);
|
||||||
|
Navigator.pop(context);
|
||||||
|
DialogUtil.errorDefault(context);
|
||||||
|
}
|
||||||
|
}).catchError((e) {
|
||||||
|
Navigator.pop(context);
|
||||||
|
Navigator.pop(context);
|
||||||
|
DialogUtil.errorDefault(context);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
labelsHashMap: Map<String, String>.from({
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
enText: 'Visitor',
|
||||||
|
ptText: 'Visitante',
|
||||||
|
): payload['nomevisita'],
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
enText: 'Reason',
|
||||||
|
ptText: 'Motivo',
|
||||||
|
): payload['motivo'],
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
enText: 'Message',
|
||||||
|
ptText: 'Mensagem',
|
||||||
|
): payload['mensagem'],
|
||||||
|
}),
|
||||||
|
imagePath:
|
||||||
|
'https://freaccess.com.br/freaccess/getImage.php?cliID=${AppState().cliUUID}&atividade=getFoto&Documento=${payload['documento'] ?? ''}&tipo=E',
|
||||||
|
statusHashMap: [
|
||||||
|
{
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
enText: 'Active',
|
||||||
|
ptText: 'Ativo',
|
||||||
|
): FlutterFlowTheme.of(context).warning,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
break;
|
||||||
|
case 'access':
|
||||||
|
showDialog(
|
||||||
|
context: AppState().context!,
|
||||||
|
barrierColor: Colors.transparent,
|
||||||
|
barrierDismissible: true,
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
return Dialog(
|
||||||
|
backgroundColor: Colors.transparent,
|
||||||
|
child: AccessNotificationModalTemplateComponentWidget(
|
||||||
|
datetime: payload['ACE_DATAHORA'].toString(),
|
||||||
|
drive: payload['ACI_DESCRICAO'].toString(),
|
||||||
|
id: payload['USR_TIPO'].toString() == 'O'
|
||||||
|
? payload['USR_ID'].toString() == ''
|
||||||
|
? '0'
|
||||||
|
: payload['USR_ID'].toString()
|
||||||
|
: payload['USR_DOCUMENTO'].toString() == ''
|
||||||
|
? '0'
|
||||||
|
: payload['USR_DOCUMENTO'].toString(),
|
||||||
|
name: payload['PES_NOME'].toString(),
|
||||||
|
type: payload['USR_TIPO'],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case 'mensagem':
|
||||||
|
showDialog(
|
||||||
|
context: AppState().context!,
|
||||||
|
barrierColor: Colors.transparent,
|
||||||
|
barrierDismissible: true,
|
||||||
|
builder: (BuildContext context) {
|
||||||
|
return Dialog(
|
||||||
|
child: SizedBox(
|
||||||
|
width: MediaQuery.of(context).size.width * 0.3,
|
||||||
|
height: MediaQuery.of(context).size.height * 0.3,
|
||||||
|
child: MessageNotificationModalTemplateComponentWidget(
|
||||||
|
id: localId,
|
||||||
|
from: payload['remetente'].toString(),
|
||||||
|
to: payload['destinatario'].toString() == 'O'
|
||||||
|
? 'Morador'
|
||||||
|
: 'Visitante',
|
||||||
|
message:
|
||||||
|
extra.toString().isEmpty ? 'Unknown' : extra.toString(),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
log('default');
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
log("onActionReceivedMethod");
|
log("onActionReceivedMethod");
|
||||||
showAlertDialog(AppState().context!, 'Test', 'Test', () async {});
|
// showAlertDialog(AppState().context!, 'Test', 'Test', () async {});
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<void> onNotificationCreatedMethod(ReceivedNotification receivedNotification) async {
|
static Future<void> onNotificationCreatedMethod(
|
||||||
|
ReceivedNotification receivedNotification) async {
|
||||||
log('onNotificationCreatedMethod');
|
log('onNotificationCreatedMethod');
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<void> onNotificationDisplayedMethod(ReceivedNotification receivedNotification) async {
|
static Future<void> onNotificationDisplayedMethod(
|
||||||
|
ReceivedNotification receivedNotification) async {
|
||||||
log('onNotificationDisplayedMethod');
|
log('onNotificationDisplayedMethod');
|
||||||
}
|
}
|
||||||
|
|
||||||
static Future<void> onDismissActionReceivedMethod(ReceivedAction receivedAction) async {
|
static Future<void> onDismissActionReceivedMethod(
|
||||||
|
ReceivedAction receivedAction) async {
|
||||||
log('onDismissActionReceivedMethod');
|
log('onDismissActionReceivedMethod');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,11 +360,10 @@ class NotificationService {
|
||||||
actionButtons: actionButtons,
|
actionButtons: actionButtons,
|
||||||
schedule: scheduled
|
schedule: scheduled
|
||||||
? NotificationInterval(
|
? NotificationInterval(
|
||||||
interval: interval,
|
interval: interval,
|
||||||
timeZone:
|
timeZone:
|
||||||
await AwesomeNotifications().getLocalTimeZoneIdentifier(),
|
await AwesomeNotifications().getLocalTimeZoneIdentifier(),
|
||||||
preciseAlarm: true)
|
preciseAlarm: true)
|
||||||
: null
|
: null);
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,8 @@
|
||||||
import 'package:hub/app_state.dart';
|
|
||||||
import 'package:hub/components/templates_components/message_notificaion_modal_template_component/message_notification_model.dart';
|
|
||||||
import 'package:hub/flutter_flow/flutter_flow_model.dart';
|
|
||||||
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
|
|
||||||
import 'package:hub/flutter_flow/flutter_flow_util.dart';
|
|
||||||
import 'package:hub/flutter_flow/internationalization.dart';
|
|
||||||
|
|
||||||
import 'package:cached_network_image/cached_network_image.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:google_fonts/google_fonts.dart';
|
import 'package:google_fonts/google_fonts.dart';
|
||||||
|
import 'package:hub/components/templates_components/message_notificaion_modal_template_component/message_notification_model.dart';
|
||||||
|
import 'package:hub/flutter_flow/flutter_flow_theme.dart';
|
||||||
|
import 'package:hub/flutter_flow/flutter_flow_util.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
|
||||||
class MessageNotificationModalTemplateComponentWidget extends StatefulWidget {
|
class MessageNotificationModalTemplateComponentWidget extends StatefulWidget {
|
||||||
|
@ -66,161 +61,84 @@ class _MessageNotificationModalTemplateComponentWidgetState
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
context.watch<AppState>();
|
context.watch<AppState>();
|
||||||
|
|
||||||
return Align(
|
return Container(
|
||||||
alignment: const AlignmentDirectional(0.0, 0.0),
|
width: MediaQuery.sizeOf(context).width,
|
||||||
child: Padding(
|
height: MediaQuery.sizeOf(context).height,
|
||||||
padding: const EdgeInsetsDirectional.fromSTEB(10.0, 0.0, 10.0, 0.0),
|
decoration: BoxDecoration(
|
||||||
child: Container(
|
color: FlutterFlowTheme.of(context).primaryBackground,
|
||||||
width: MediaQuery.sizeOf(context).width,
|
borderRadius: const BorderRadius.only(
|
||||||
decoration: BoxDecoration(
|
bottomLeft: Radius.circular(25.0),
|
||||||
color: FlutterFlowTheme.of(context).primaryBackground,
|
bottomRight: Radius.circular(25.0),
|
||||||
borderRadius: const BorderRadius.only(
|
topLeft: Radius.circular(25.0),
|
||||||
bottomLeft: Radius.circular(25.0),
|
topRight: Radius.circular(25.0),
|
||||||
bottomRight: Radius.circular(25.0),
|
),
|
||||||
topLeft: Radius.circular(25.0),
|
),
|
||||||
topRight: Radius.circular(25.0),
|
child: SingleChildScrollView(
|
||||||
),
|
child: Column(
|
||||||
),
|
mainAxisSize: MainAxisSize.min,
|
||||||
child: SingleChildScrollView(
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
child: Column(
|
children: [
|
||||||
mainAxisSize: MainAxisSize.min,
|
Padding(
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
padding:
|
||||||
children: [
|
const EdgeInsetsDirectional.fromSTEB(24.0, 0.0, 24.0, 0.0),
|
||||||
Padding(
|
child: TextFormField(
|
||||||
padding: const EdgeInsetsDirectional.fromSTEB(
|
controller: _model.textController1,
|
||||||
24.0, 0.0, 24.0, 0.0),
|
focusNode: _model.textFieldFocusNode1,
|
||||||
child: TextFormField(
|
autofocus: false,
|
||||||
controller: _model.textController1,
|
textInputAction: TextInputAction.next,
|
||||||
focusNode: _model.textFieldFocusNode1,
|
readOnly: true,
|
||||||
autofocus: false,
|
obscureText: false,
|
||||||
textInputAction: TextInputAction.next,
|
decoration: InputDecoration(
|
||||||
readOnly: true,
|
isDense: true,
|
||||||
obscureText: false,
|
labelText: FFLocalizations.of(context).getVariableText(
|
||||||
decoration: InputDecoration(
|
ptText: 'Mensagem',
|
||||||
isDense: true,
|
enText: 'Message',
|
||||||
labelText: FFLocalizations.of(context).getVariableText(
|
),
|
||||||
ptText: 'Mensagem',
|
labelStyle: FlutterFlowTheme.of(context).labelMedium.override(
|
||||||
enText: 'Message',
|
fontFamily:
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily,
|
||||||
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily),
|
||||||
),
|
),
|
||||||
labelStyle: FlutterFlowTheme.of(context)
|
hintStyle: FlutterFlowTheme.of(context).labelMedium.override(
|
||||||
.labelMedium
|
fontFamily:
|
||||||
.override(
|
FlutterFlowTheme.of(context).labelMediumFamily,
|
||||||
fontFamily:
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
FlutterFlowTheme.of(context).labelMediumFamily,
|
letterSpacing: 0.0,
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
letterSpacing: 0.0,
|
FlutterFlowTheme.of(context).labelMediumFamily),
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context).labelMediumFamily),
|
|
||||||
),
|
|
||||||
hintStyle: FlutterFlowTheme.of(context)
|
|
||||||
.labelMedium
|
|
||||||
.override(
|
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context).labelMediumFamily,
|
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context).labelMediumFamily),
|
|
||||||
),
|
|
||||||
enabledBorder: InputBorder.none,
|
|
||||||
focusedBorder: InputBorder.none,
|
|
||||||
errorBorder: InputBorder.none,
|
|
||||||
focusedErrorBorder: InputBorder.none,
|
|
||||||
suffixIcon: Icon(
|
|
||||||
Icons.message,
|
|
||||||
color: FlutterFlowTheme.of(context).accent1,
|
|
||||||
),
|
),
|
||||||
),
|
enabledBorder: InputBorder.none,
|
||||||
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
focusedBorder: InputBorder.none,
|
||||||
fontFamily:
|
errorBorder: InputBorder.none,
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily,
|
focusedErrorBorder: InputBorder.none,
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
suffixIcon: Icon(
|
||||||
letterSpacing: 0.0,
|
Icons.message,
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
color: FlutterFlowTheme.of(context).accent1,
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily),
|
|
||||||
),
|
|
||||||
textAlign: TextAlign.start,
|
|
||||||
maxLines: null,
|
|
||||||
keyboardType: TextInputType.name,
|
|
||||||
validator:
|
|
||||||
_model.textController1Validator.asValidator(context),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Row(
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
mainAxisSize: MainAxisSize.max,
|
fontFamily: FlutterFlowTheme.of(context).bodyMediumFamily,
|
||||||
children: [
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
Expanded(
|
letterSpacing: 0.0,
|
||||||
child: TextFormField(
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
controller: _model.textController2,
|
FlutterFlowTheme.of(context).bodyMediumFamily),
|
||||||
focusNode: _model.textFieldFocusNode2,
|
|
||||||
autofocus: false,
|
|
||||||
textInputAction: TextInputAction.next,
|
|
||||||
readOnly: true,
|
|
||||||
obscureText: false,
|
|
||||||
decoration: InputDecoration(
|
|
||||||
isDense: true,
|
|
||||||
labelText:
|
|
||||||
FFLocalizations.of(context).getVariableText(
|
|
||||||
ptText: 'De',
|
|
||||||
enText: 'From',
|
|
||||||
),
|
|
||||||
labelStyle: FlutterFlowTheme.of(context)
|
|
||||||
.labelMedium
|
|
||||||
.override(
|
|
||||||
fontFamily: FlutterFlowTheme.of(context)
|
|
||||||
.labelMediumFamily,
|
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context)
|
|
||||||
.labelMediumFamily),
|
|
||||||
),
|
|
||||||
hintStyle: FlutterFlowTheme.of(context)
|
|
||||||
.labelMedium
|
|
||||||
.override(
|
|
||||||
fontFamily: FlutterFlowTheme.of(context)
|
|
||||||
.labelMediumFamily,
|
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context)
|
|
||||||
.labelMediumFamily),
|
|
||||||
),
|
|
||||||
enabledBorder: InputBorder.none,
|
|
||||||
focusedBorder: InputBorder.none,
|
|
||||||
errorBorder: InputBorder.none,
|
|
||||||
focusedErrorBorder: InputBorder.none,
|
|
||||||
suffixIcon: Icon(
|
|
||||||
Icons.person,
|
|
||||||
color: FlutterFlowTheme.of(context).accent1,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily,
|
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context)
|
|
||||||
.bodyMediumFamily),
|
|
||||||
),
|
|
||||||
textAlign: TextAlign.start,
|
|
||||||
maxLines: null,
|
|
||||||
keyboardType: TextInputType.name,
|
|
||||||
validator: _model.textController2Validator
|
|
||||||
.asValidator(context),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
]
|
textAlign: TextAlign.start,
|
||||||
.addToStart(const SizedBox(width: 24.0))
|
maxLines: null,
|
||||||
.addToEnd(const SizedBox(width: 24.0)),
|
keyboardType: TextInputType.name,
|
||||||
),
|
validator: _model.textController1Validator.asValidator(context),
|
||||||
Padding(
|
),
|
||||||
padding: const EdgeInsetsDirectional.fromSTEB(
|
),
|
||||||
24.0, 0.0, 24.0, 0.0),
|
Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
child: TextFormField(
|
child: TextFormField(
|
||||||
controller: _model.textController3,
|
controller: _model.textController2,
|
||||||
focusNode: _model.textFieldFocusNode3,
|
focusNode: _model.textFieldFocusNode2,
|
||||||
autofocus: false,
|
autofocus: false,
|
||||||
textInputAction: TextInputAction.next,
|
textInputAction: TextInputAction.next,
|
||||||
readOnly: true,
|
readOnly: true,
|
||||||
|
@ -228,8 +146,8 @@ class _MessageNotificationModalTemplateComponentWidgetState
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
isDense: true,
|
isDense: true,
|
||||||
labelText: FFLocalizations.of(context).getVariableText(
|
labelText: FFLocalizations.of(context).getVariableText(
|
||||||
ptText: 'Para',
|
ptText: 'De',
|
||||||
enText: 'To',
|
enText: 'From',
|
||||||
),
|
),
|
||||||
labelStyle: FlutterFlowTheme.of(context)
|
labelStyle: FlutterFlowTheme.of(context)
|
||||||
.labelMedium
|
.labelMedium
|
||||||
|
@ -272,15 +190,71 @@ class _MessageNotificationModalTemplateComponentWidgetState
|
||||||
maxLines: null,
|
maxLines: null,
|
||||||
keyboardType: TextInputType.name,
|
keyboardType: TextInputType.name,
|
||||||
validator:
|
validator:
|
||||||
_model.textController3Validator.asValidator(context),
|
_model.textController2Validator.asValidator(context),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
]
|
]
|
||||||
.divide(const SizedBox(height: 10.0))
|
.addToStart(const SizedBox(width: 24.0))
|
||||||
.addToStart(const SizedBox(height: 20.0))
|
.addToEnd(const SizedBox(width: 24.0)),
|
||||||
.addToEnd(const SizedBox(height: 20.0)),
|
|
||||||
),
|
),
|
||||||
),
|
Padding(
|
||||||
|
padding:
|
||||||
|
const EdgeInsetsDirectional.fromSTEB(24.0, 0.0, 24.0, 0.0),
|
||||||
|
child: TextFormField(
|
||||||
|
controller: _model.textController3,
|
||||||
|
focusNode: _model.textFieldFocusNode3,
|
||||||
|
autofocus: false,
|
||||||
|
textInputAction: TextInputAction.next,
|
||||||
|
readOnly: true,
|
||||||
|
obscureText: false,
|
||||||
|
decoration: InputDecoration(
|
||||||
|
isDense: true,
|
||||||
|
labelText: FFLocalizations.of(context).getVariableText(
|
||||||
|
ptText: 'Para',
|
||||||
|
enText: 'To',
|
||||||
|
),
|
||||||
|
labelStyle: FlutterFlowTheme.of(context).labelMedium.override(
|
||||||
|
fontFamily:
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily,
|
||||||
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily),
|
||||||
|
),
|
||||||
|
hintStyle: FlutterFlowTheme.of(context).labelMedium.override(
|
||||||
|
fontFamily:
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily,
|
||||||
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).labelMediumFamily),
|
||||||
|
),
|
||||||
|
enabledBorder: InputBorder.none,
|
||||||
|
focusedBorder: InputBorder.none,
|
||||||
|
errorBorder: InputBorder.none,
|
||||||
|
focusedErrorBorder: InputBorder.none,
|
||||||
|
suffixIcon: Icon(
|
||||||
|
Icons.person,
|
||||||
|
color: FlutterFlowTheme.of(context).accent1,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
|
fontFamily: FlutterFlowTheme.of(context).bodyMediumFamily,
|
||||||
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).bodyMediumFamily),
|
||||||
|
),
|
||||||
|
textAlign: TextAlign.start,
|
||||||
|
maxLines: null,
|
||||||
|
keyboardType: TextInputType.name,
|
||||||
|
validator: _model.textController3Validator.asValidator(context),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
||||||
|
.divide(const SizedBox(height: 10.0))
|
||||||
|
.addToStart(const SizedBox(height: 20.0))
|
||||||
|
.addToEnd(const SizedBox(height: 20.0)),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,15 +1,14 @@
|
||||||
import 'dart:developer';
|
|
||||||
|
|
||||||
import 'package:firebase_crashlytics/firebase_crashlytics.dart';
|
import 'package:firebase_crashlytics/firebase_crashlytics.dart';
|
||||||
import 'package:hub/backend/api_requests/api_calls.dart';
|
import 'package:hub/backend/api_requests/api_calls.dart';
|
||||||
|
|
||||||
class LogUtil {
|
class LogUtil {
|
||||||
|
static void requestAPIFailed(String url, String body, String reason,
|
||||||
static void requestAPIFailed(String url, String body, String reason, dynamic error, StackTrace stack) async {
|
dynamic error, StackTrace stack) async {
|
||||||
FirebaseCrashlytics.instance.setCustomKey('URL', "${PhpGroup.getBaseUrl()}/$url");
|
FirebaseCrashlytics.instance
|
||||||
|
.setCustomKey('URL', "${PhpGroup.getBaseUrl()}/$url");
|
||||||
FirebaseCrashlytics.instance.setCustomKey('Body', body);
|
FirebaseCrashlytics.instance.setCustomKey('Body', body);
|
||||||
|
|
||||||
await FirebaseCrashlytics.instance.recordError(error, stack, reason: reason);
|
await FirebaseCrashlytics.instance
|
||||||
|
.recordError(error, stack, reason: reason);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|
36
pubspec.lock
36
pubspec.lock
|
@ -809,18 +809,18 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: leak_tracker
|
name: leak_tracker
|
||||||
sha256: "7f0df31977cb2c0b88585095d168e689669a2cc9b97c309665e3386f3e9d341a"
|
sha256: "3f87a60e8c63aecc975dda1ceedbc8f24de75f09e4856ea27daf8958f2f0ce05"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "10.0.4"
|
version: "10.0.5"
|
||||||
leak_tracker_flutter_testing:
|
leak_tracker_flutter_testing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: leak_tracker_flutter_testing
|
name: leak_tracker_flutter_testing
|
||||||
sha256: "06e98f569d004c1315b991ded39924b21af84cf14cc94791b8aea337d25b57f8"
|
sha256: "932549fb305594d82d7183ecd9fa93463e9914e1b67cacc34bc40906594a1806"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.0.3"
|
version: "3.0.5"
|
||||||
leak_tracker_testing:
|
leak_tracker_testing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -897,10 +897,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: material_color_utilities
|
name: material_color_utilities
|
||||||
sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
|
sha256: f7142bb1154231d7ea5f96bc7bde4bda2a0945d2806bb11670e30b850d56bdec
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.8.0"
|
version: "0.11.1"
|
||||||
maybe_just_nothing:
|
maybe_just_nothing:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -913,10 +913,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: meta
|
name: meta
|
||||||
sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
|
sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "1.12.0"
|
version: "1.15.0"
|
||||||
mime:
|
mime:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -1278,10 +1278,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: sqflite_common
|
name: sqflite_common
|
||||||
sha256: "3da423ce7baf868be70e2c0976c28a1bb2f73644268b7ffa7d2e08eab71f16a4"
|
sha256: "7b41b6c3507854a159e24ae90a8e3e9cc01eb26a477c118d6dca065b5f55453e"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.5.4"
|
version: "2.5.4+2"
|
||||||
stack_trace:
|
stack_trace:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -1334,10 +1334,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: test_api
|
name: test_api
|
||||||
sha256: "9955ae474176f7ac8ee4e989dadfb411a58c30415bcfb648fa04b2b8a03afa7f"
|
sha256: "5b8a98dafc4d5c4c9c72d8b31ab2b23fc13422348d2997120294d3bac86b4ddb"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.7.0"
|
version: "0.7.2"
|
||||||
timeago:
|
timeago:
|
||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
|
@ -1502,10 +1502,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: vm_service
|
name: vm_service
|
||||||
sha256: "3923c89304b715fb1eb6423f017651664a03bf5f4b29983627c4da791f74a4ec"
|
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "14.2.1"
|
version: "14.2.4"
|
||||||
web:
|
web:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -1542,10 +1542,10 @@ packages:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
name: webview_flutter_wkwebview
|
name: webview_flutter_wkwebview
|
||||||
sha256: "9c62cc46fa4f2d41e10ab81014c1de470a6c6f26051a2de32111b2ee55287feb"
|
sha256: "1942a12224ab31e9508cf00c0c6347b931b023b8a4f0811e5dec3b06f94f117d"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.14.0"
|
version: "3.15.0"
|
||||||
win32:
|
win32:
|
||||||
dependency: "direct overridden"
|
dependency: "direct overridden"
|
||||||
description:
|
description:
|
||||||
|
@ -1587,5 +1587,5 @@ packages:
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.2"
|
version: "3.1.2"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=3.4.0 <4.0.0"
|
dart: ">=3.5.0 <4.0.0"
|
||||||
flutter: ">=3.22.0"
|
flutter: ">=3.24.0"
|
||||||
|
|
Loading…
Reference in New Issue