chore: Update tab controller length in message widget
This commit is contained in:
parent
7026c0b08e
commit
7c721b6768
|
@ -19,6 +19,17 @@ import '/commons/widgets/flutter_flow_theme.dart';
|
||||||
import '/commons/widgets/flutter_flow_util.dart';
|
import '/commons/widgets/flutter_flow_util.dart';
|
||||||
import '/commons/widgets/random_data_util.dart' as random_data;
|
import '/commons/widgets/random_data_util.dart' as random_data;
|
||||||
|
|
||||||
|
|
||||||
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
|
Future<void> openTermsOfUse(BuildContext context) async {
|
||||||
|
log('openTermsOfUse');
|
||||||
|
final Uri url = Uri.parse('https://freaccess.com.br/pp/');
|
||||||
|
if (!await launchUrl(url)) {
|
||||||
|
throw Exception('Could not launch $url');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Future repeatVisitScheduleAction(
|
Future repeatVisitScheduleAction(
|
||||||
BuildContext context, {
|
BuildContext context, {
|
||||||
List<dynamic>? visitorJsonList,
|
List<dynamic>? visitorJsonList,
|
||||||
|
@ -237,8 +248,8 @@ Future<bool> signUpRegisterAction(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (alertDialogContext) {
|
builder: (alertDialogContext) {
|
||||||
return AlertDialog(
|
return AlertDialog(
|
||||||
title: const Text('ERROR2'),
|
title: const Text('Error'),
|
||||||
content: const Text('ERROR2'),
|
content: Text('${registerCall?.jsonBody}'),
|
||||||
actions: [
|
actions: [
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () => Navigator.pop(alertDialogContext),
|
onPressed: () => Navigator.pop(alertDialogContext),
|
||||||
|
@ -254,12 +265,21 @@ Future<bool> signUpRegisterAction(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (alertDialogContext) {
|
builder: (alertDialogContext) {
|
||||||
return AlertDialog(
|
return AlertDialog(
|
||||||
title: const Text('ERROR1'),
|
title: Text(FFLocalizations.of(context).getVariableText(
|
||||||
content: const Text('ERROR1'),
|
enText: 'Error',
|
||||||
|
ptText: 'Erro',
|
||||||
|
)),
|
||||||
|
content: Text(FFLocalizations.of(context).getVariableText(
|
||||||
|
enText: 'Please fill in all fields',
|
||||||
|
ptText: 'Por favor, preencha todos os campos',
|
||||||
|
)),
|
||||||
actions: [
|
actions: [
|
||||||
TextButton(
|
TextButton(
|
||||||
onPressed: () => Navigator.pop(alertDialogContext),
|
onPressed: () => Navigator.pop(alertDialogContext),
|
||||||
child: const Text('ERROR1 '),
|
child: Text(FFLocalizations.of(context).getVariableText(
|
||||||
|
ptText: 'Fechar',
|
||||||
|
enText: 'Close',
|
||||||
|
)),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
);
|
);
|
||||||
|
@ -314,6 +334,7 @@ Future toggleSignInPage(BuildContext context) async {
|
||||||
}
|
}
|
||||||
|
|
||||||
Future toggleSignUpPage(BuildContext context) async {
|
Future toggleSignUpPage(BuildContext context) async {
|
||||||
|
|
||||||
context.pushNamed(
|
context.pushNamed(
|
||||||
'signUpPage',
|
'signUpPage',
|
||||||
extra: <String, dynamic>{
|
extra: <String, dynamic>{
|
||||||
|
|
|
@ -187,10 +187,10 @@ class _CardItemTemplateComponentWidgetState
|
||||||
return linkedHashMap.entries.map((MapEntry<String, Color> item) {
|
return linkedHashMap.entries.map((MapEntry<String, Color> item) {
|
||||||
return Container(
|
return Container(
|
||||||
child: Row(
|
child: Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
children: [
|
children: [
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(vertical: 3.0),
|
padding: const EdgeInsets.symmetric(horizontal: 1.0, vertical: 3.0),
|
||||||
child: Container(
|
child: Container(
|
||||||
width: 100.0,
|
width: 100.0,
|
||||||
height: 27.0,
|
height: 27.0,
|
||||||
|
|
|
@ -50,6 +50,7 @@ abstract class FlutterFlowTheme {
|
||||||
late Color secondary;
|
late Color secondary;
|
||||||
late Color tertiary;
|
late Color tertiary;
|
||||||
late Color alternate;
|
late Color alternate;
|
||||||
|
late Color alternate2;
|
||||||
late Color primaryText;
|
late Color primaryText;
|
||||||
late Color secondaryText;
|
late Color secondaryText;
|
||||||
late Color primaryBackground;
|
late Color primaryBackground;
|
||||||
|
@ -160,6 +161,7 @@ class LightModeTheme extends FlutterFlowTheme {
|
||||||
late Color secondary = const Color(0xFFB59E9E);
|
late Color secondary = const Color(0xFFB59E9E);
|
||||||
late Color tertiary = const Color(0xFF984BB6);
|
late Color tertiary = const Color(0xFF984BB6);
|
||||||
late Color alternate = const Color(0xFFF2F2F2);
|
late Color alternate = const Color(0xFFF2F2F2);
|
||||||
|
late Color alternate2 = const Color(0xFF232323);
|
||||||
late Color primaryText = const Color(0xFF000000);
|
late Color primaryText = const Color(0xFF000000);
|
||||||
late Color secondaryText = const Color(0xFFFFFFFF);
|
late Color secondaryText = const Color(0xFFFFFFFF);
|
||||||
late Color primaryBackground = const Color(0xFFFFFFFF);
|
late Color primaryBackground = const Color(0xFFFFFFFF);
|
||||||
|
@ -559,6 +561,7 @@ class DarkModeTheme extends FlutterFlowTheme {
|
||||||
late Color secondary = const Color(0xFF18AA99);
|
late Color secondary = const Color(0xFF18AA99);
|
||||||
late Color tertiary = const Color(0xFF984BB6);
|
late Color tertiary = const Color(0xFF984BB6);
|
||||||
late Color alternate = const Color(0xFF232323);
|
late Color alternate = const Color(0xFF232323);
|
||||||
|
late Color alternate2 = const Color(0xFF171717);
|
||||||
late Color primaryText = const Color(0xFFFFFFFF);
|
late Color primaryText = const Color(0xFFFFFFFF);
|
||||||
late Color secondaryText = const Color(0xFF000000);
|
late Color secondaryText = const Color(0xFF000000);
|
||||||
late Color primaryBackground = const Color(0xFF171717);
|
late Color primaryBackground = const Color(0xFF171717);
|
||||||
|
|
|
@ -967,7 +967,7 @@ final kTranslationsMap = <Map<String, Map<String, String>>>[
|
||||||
},
|
},
|
||||||
'a9smhn5b': {
|
'a9smhn5b': {
|
||||||
'pt': 'Você já tem uma conta? ',
|
'pt': 'Você já tem uma conta? ',
|
||||||
'en': 'You already have an account?',
|
'en': 'You already have an account? ',
|
||||||
},
|
},
|
||||||
'09xv5ctc': {
|
'09xv5ctc': {
|
||||||
'pt': 'Clique aqui',
|
'pt': 'Clique aqui',
|
||||||
|
|
|
@ -9,11 +9,16 @@ import 'package:flutter_web_plugins/url_strategy.dart';
|
||||||
import 'commons/widgets/flutter_flow_theme.dart';
|
import 'commons/widgets/flutter_flow_theme.dart';
|
||||||
import 'commons/widgets/flutter_flow_util.dart';
|
import 'commons/widgets/flutter_flow_util.dart';
|
||||||
import 'commons/widgets/internationalization.dart';
|
import 'commons/widgets/internationalization.dart';
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
|
|
||||||
final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
|
final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
|
||||||
|
|
||||||
void main() async {
|
void main() async {
|
||||||
WidgetsFlutterBinding.ensureInitialized();
|
WidgetsFlutterBinding.ensureInitialized();
|
||||||
|
SystemChrome.setPreferredOrientations([
|
||||||
|
DeviceOrientation.portraitUp,
|
||||||
|
DeviceOrientation.portraitDown,
|
||||||
|
]);
|
||||||
await initializeApp();
|
await initializeApp();
|
||||||
runApp(ChangeNotifierProvider(
|
runApp(ChangeNotifierProvider(
|
||||||
create: (context) => FFAppState(),
|
create: (context) => FFAppState(),
|
||||||
|
|
|
@ -19,12 +19,16 @@ class PassKeyTemplateComponentModel
|
||||||
String? Function(BuildContext, String?)? keyTextFieldTextControllerValidator2;
|
String? Function(BuildContext, String?)? keyTextFieldTextControllerValidator2;
|
||||||
String? _keyTextFieldTextControllerValidator(
|
String? _keyTextFieldTextControllerValidator(
|
||||||
BuildContext context, String? val) {
|
BuildContext context, String? val) {
|
||||||
if (val == null || val.isEmpty) {
|
if (val == null || val.isEmpty ) {
|
||||||
return FFLocalizations.of(context).getVariableText(
|
return FFLocalizations.of(context).getVariableText(
|
||||||
enText: 'This field is required',
|
enText: 'This field is required',
|
||||||
ptText: 'Este campo é obrigatório',
|
ptText: 'Este campo é obrigatório',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
if ( val.length < 4 ) return FFLocalizations.of(context).getVariableText(
|
||||||
|
enText: 'This field must have at least 4 characters',
|
||||||
|
ptText: 'Este campo deve ter pelo menos 4 caracteres',
|
||||||
|
);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -158,7 +158,7 @@ class _PassKeyTemplateWidgetState
|
||||||
),
|
),
|
||||||
Form(
|
Form(
|
||||||
key: _model.formKey,
|
key: _model.formKey,
|
||||||
autovalidateMode: AutovalidateMode.always,
|
autovalidateMode: AutovalidateMode.onUserInteraction,
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
Padding(
|
Padding(
|
||||||
|
@ -189,7 +189,7 @@ class _PassKeyTemplateWidgetState
|
||||||
.labelMedium
|
.labelMedium
|
||||||
.override(
|
.override(
|
||||||
fontFamily: 'Plus Jakarta Sans',
|
fontFamily: 'Plus Jakarta Sans',
|
||||||
color: FlutterFlowTheme.of(context).primary,
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
fontSize: 14.0,
|
fontSize: 14.0,
|
||||||
letterSpacing: 0.0,
|
letterSpacing: 0.0,
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
|
@ -213,14 +213,14 @@ class _PassKeyTemplateWidgetState
|
||||||
),
|
),
|
||||||
enabledBorder: OutlineInputBorder(
|
enabledBorder: OutlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: FlutterFlowTheme.of(context).accent1,
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
width: 2.0,
|
width: 2.0,
|
||||||
),
|
),
|
||||||
borderRadius: BorderRadius.circular(12.0),
|
borderRadius: BorderRadius.circular(12.0),
|
||||||
),
|
),
|
||||||
focusedBorder: OutlineInputBorder(
|
focusedBorder: OutlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: FlutterFlowTheme.of(context).accent3,
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
width: 2.0,
|
width: 2.0,
|
||||||
),
|
),
|
||||||
borderRadius: BorderRadius.circular(12.0),
|
borderRadius: BorderRadius.circular(12.0),
|
||||||
|
@ -282,6 +282,7 @@ class _PassKeyTemplateWidgetState
|
||||||
.asValidator(context),
|
.asValidator(context),
|
||||||
inputFormatters: [
|
inputFormatters: [
|
||||||
FilteringTextInputFormatter.allow(RegExp('[0-9]')),
|
FilteringTextInputFormatter.allow(RegExp('[0-9]')),
|
||||||
|
LengthLimitingTextInputFormatter(4),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -21,6 +21,10 @@ class QrCodePassKeyTemplateComponentModel
|
||||||
ptText: 'Este campo é obrigatório',
|
ptText: 'Este campo é obrigatório',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
if (val.length < 4) return FFLocalizations.of(context).getVariableText(
|
||||||
|
enText: 'This field must be at least 4 characters',
|
||||||
|
ptText: 'Este campo deve ter pelo menos 4 caracteres',
|
||||||
|
);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -156,7 +156,7 @@ class _QrCodePassKeyTemplateComponentWidgetState
|
||||||
),
|
),
|
||||||
Form(
|
Form(
|
||||||
key: _model.formKey,
|
key: _model.formKey,
|
||||||
autovalidateMode: AutovalidateMode.always,
|
autovalidateMode: AutovalidateMode.onUserInteraction,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsetsDirectional.fromSTEB(16.0, 12.0, 16.0, 0.0),
|
padding: const EdgeInsetsDirectional.fromSTEB(16.0, 12.0, 16.0, 0.0),
|
||||||
child: SizedBox(
|
child: SizedBox(
|
||||||
|
@ -181,7 +181,7 @@ class _QrCodePassKeyTemplateComponentWidgetState
|
||||||
labelStyle:
|
labelStyle:
|
||||||
FlutterFlowTheme.of(context).labelMedium.override(
|
FlutterFlowTheme.of(context).labelMedium.override(
|
||||||
fontFamily: 'Plus Jakarta Sans',
|
fontFamily: 'Plus Jakarta Sans',
|
||||||
color: FlutterFlowTheme.of(context).primary,
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
fontSize: 14.0,
|
fontSize: 14.0,
|
||||||
letterSpacing: 0.0,
|
letterSpacing: 0.0,
|
||||||
fontWeight: FontWeight.w500,
|
fontWeight: FontWeight.w500,
|
||||||
|
@ -203,14 +203,14 @@ class _QrCodePassKeyTemplateComponentWidgetState
|
||||||
),
|
),
|
||||||
enabledBorder: OutlineInputBorder(
|
enabledBorder: OutlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: FlutterFlowTheme.of(context).accent1,
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
width: 2.0,
|
width: 2.0,
|
||||||
),
|
),
|
||||||
borderRadius: BorderRadius.circular(12.0),
|
borderRadius: BorderRadius.circular(12.0),
|
||||||
),
|
),
|
||||||
focusedBorder: OutlineInputBorder(
|
focusedBorder: OutlineInputBorder(
|
||||||
borderSide: BorderSide(
|
borderSide: BorderSide(
|
||||||
color: FlutterFlowTheme.of(context).accent3,
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
width: 2.0,
|
width: 2.0,
|
||||||
),
|
),
|
||||||
borderRadius: BorderRadius.circular(12.0),
|
borderRadius: BorderRadius.circular(12.0),
|
||||||
|
@ -269,7 +269,9 @@ class _QrCodePassKeyTemplateComponentWidgetState
|
||||||
validator: _model.keyTextFieldTextControllerValidator
|
validator: _model.keyTextFieldTextControllerValidator
|
||||||
.asValidator(context),
|
.asValidator(context),
|
||||||
inputFormatters: [
|
inputFormatters: [
|
||||||
FilteringTextInputFormatter.allow(RegExp('[0-9]'))
|
FilteringTextInputFormatter.allow(RegExp('[0-9]')),
|
||||||
|
LengthLimitingTextInputFormatter(4),
|
||||||
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -324,35 +324,35 @@ class _AcessHistoryPageWidgetState extends State<AcessHistoryPageWidget> {
|
||||||
accessHistoryItem['PES_TIPO'] == 'O'
|
accessHistoryItem['PES_TIPO'] == 'O'
|
||||||
? Map<String, Color>.from({
|
? Map<String, Color>.from({
|
||||||
FFLocalizations.of(context).getVariableText(
|
FFLocalizations.of(context).getVariableText(
|
||||||
ptText: 'Visitado',
|
ptText: 'Morador',
|
||||||
enText: 'Visited',
|
enText: 'Resident',
|
||||||
): FlutterFlowTheme.of(context).alternate,
|
): FlutterFlowTheme.of(context).alternate2,
|
||||||
})
|
})
|
||||||
: accessHistoryItem['PES_TIPO'] == 'E'
|
: accessHistoryItem['PES_TIPO'] == 'E'
|
||||||
? Map<String, Color>.from({
|
? Map<String, Color>.from({
|
||||||
FFLocalizations.of(context).getVariableText(
|
FFLocalizations.of(context).getVariableText(
|
||||||
ptText: 'Visitante',
|
ptText: 'Visitante',
|
||||||
enText: 'Visitor',
|
enText: 'Visitor',
|
||||||
): FlutterFlowTheme.of(context).alternate,
|
): FlutterFlowTheme.of(context).alternate2,
|
||||||
})
|
})
|
||||||
: Map<String, Color>.from({
|
: Map<String, Color>.from({
|
||||||
FFLocalizations.of(context).getVariableText(
|
FFLocalizations.of(context).getVariableText(
|
||||||
ptText: 'Desconhecido',
|
ptText: 'Desconhecido',
|
||||||
enText: 'Unknown',
|
enText: 'Unknown',
|
||||||
): FlutterFlowTheme.of(context).alternate,
|
): FlutterFlowTheme.of(context).alternate2,
|
||||||
}),
|
}),
|
||||||
accessHistoryItem['ACE_TIPO'] == '0'
|
accessHistoryItem['ACE_TIPO'] == '0'
|
||||||
? Map<String, Color>.from({
|
? Map<String, Color>.from({
|
||||||
FFLocalizations.of(context).getVariableText(
|
FFLocalizations.of(context).getVariableText(
|
||||||
ptText: 'Entrada',
|
ptText: 'Entrada',
|
||||||
enText: 'Entrada'
|
enText: 'Entrance',
|
||||||
): FlutterFlowTheme.of(context).success,
|
): FlutterFlowTheme.of(context).success,
|
||||||
})
|
})
|
||||||
: accessHistoryItem['ACE_TIPO'] == '1'
|
: accessHistoryItem['ACE_TIPO'] == '1'
|
||||||
? Map<String, Color>.from({
|
? Map<String, Color>.from({
|
||||||
FFLocalizations.of(context).getVariableText(
|
FFLocalizations.of(context).getVariableText(
|
||||||
ptText: 'Saída',
|
ptText: 'Saída',
|
||||||
enText: 'Saída',
|
enText: 'Exit',
|
||||||
): FlutterFlowTheme.of(context).error,
|
): FlutterFlowTheme.of(context).error,
|
||||||
})
|
})
|
||||||
: Map<String, Color>.from({
|
: Map<String, Color>.from({
|
||||||
|
|
|
@ -1,21 +1,13 @@
|
||||||
// import 'dart:js_interop';
|
// import 'dart:js_interop';
|
||||||
|
|
||||||
import 'dart:convert';
|
|
||||||
import 'dart:developer';
|
import 'dart:developer';
|
||||||
|
|
||||||
import 'package:hub/commons/actions/api_calls.dart';
|
import 'package:hub/commons/actions/api_calls.dart';
|
||||||
import 'package:hub/commons/actions/actions.dart';
|
|
||||||
import 'package:hub/commons/actions/api_manager.dart';
|
import 'package:hub/commons/actions/api_manager.dart';
|
||||||
import 'package:hub/commons/actions/pushNotificationService.dart';
|
|
||||||
import 'package:hub/commons/components/molecules/card/widget.dart';
|
|
||||||
import 'package:hub/modals/notifications/visit_request/widget.dart';
|
|
||||||
import 'package:json_path/fun_extra.dart';
|
|
||||||
|
|
||||||
import '/commons/widgets/flutter_flow_icon_button.dart';
|
import '/commons/widgets/flutter_flow_icon_button.dart';
|
||||||
import '/commons/widgets/flutter_flow_theme.dart';
|
import '/commons/widgets/flutter_flow_theme.dart';
|
||||||
import '/commons/widgets/flutter_flow_util.dart';
|
import '/commons/widgets/flutter_flow_util.dart';
|
||||||
import '/commons/widgets/custom_functions.dart' as functions;
|
|
||||||
import 'package:cached_network_image/cached_network_image.dart';
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
||||||
import 'package:google_fonts/google_fonts.dart';
|
import 'package:google_fonts/google_fonts.dart';
|
||||||
|
@ -65,16 +57,11 @@ class _MessageHistoryPageWidgetState extends State<MessageHistoryPageWidget> wit
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
context.watch<FFAppState>();
|
context.watch<FFAppState>();
|
||||||
return GestureDetector(
|
return Scaffold(
|
||||||
onTap: () => _model.unfocusNode.canRequestFocus
|
key: scaffoldKey,
|
||||||
? FocusScope.of(context).requestFocus(_model.unfocusNode)
|
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
||||||
: FocusScope.of(context).unfocus(),
|
appBar: appBarMessage(context),
|
||||||
child: Scaffold(
|
body: bodyMessage(context, _model),
|
||||||
key: scaffoldKey,
|
|
||||||
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
|
||||||
appBar: appBarMessage(context),
|
|
||||||
body: bodyMessage(context, _model),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -247,57 +234,67 @@ Widget messageHistoryItem(
|
||||||
BuildContext context, dynamic jsonBody) {
|
BuildContext context, dynamic jsonBody) {
|
||||||
log(jsonBody.toString());
|
log(jsonBody.toString());
|
||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 15),
|
padding: const EdgeInsets.symmetric(horizontal: 15),
|
||||||
child: Card(
|
child: Card(
|
||||||
child: Container(
|
child: Container(
|
||||||
// height: 100,
|
// height: 100,
|
||||||
child: Padding(
|
child: Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.center,
|
mainAxisAlignment: MainAxisAlignment.center,
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
children: [
|
children: [
|
||||||
Row(
|
Padding(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
padding: const EdgeInsets.only(left: 15.0),
|
||||||
mainAxisSize: MainAxisSize.max,
|
child: Text(
|
||||||
children: [
|
jsonBody['MSG_DATE'].toString(),
|
||||||
Padding(
|
style: TextStyle(
|
||||||
padding: const EdgeInsets.only(left: 15.0),
|
fontWeight: FontWeight.bold,
|
||||||
child: Text(
|
fontSize: 16,
|
||||||
jsonBody['MSG_DATE'].toString(),
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
style: TextStyle(
|
overflow: TextOverflow.ellipsis,
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 16,
|
|
||||||
color: FlutterFlowTheme.of(context).primary,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
Padding(
|
),
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 15.0),
|
|
||||||
child: Container(
|
|
||||||
width: 100, // Adjust the width as needed
|
|
||||||
child: Text(
|
|
||||||
jsonBody['MSG_ORIGEM_DESC'].toString(),
|
|
||||||
style: TextStyle(
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
fontSize: 16,
|
|
||||||
color: FlutterFlowTheme.of(context).primary,
|
|
||||||
),
|
|
||||||
overflow: TextOverflow.ellipsis,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Icon(jsonBody['MSG_DESTINO_TP'] == 'T'
|
|
||||||
? Icons.group
|
|
||||||
: Icons.person, color: FlutterFlowTheme.of(context).accent1,),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
Text(jsonBody['MSG_TEXTO'].toString()),
|
Icon(
|
||||||
|
jsonBody['MSG_DESTINO_TP'] == 'T'
|
||||||
|
? Icons.group
|
||||||
|
: Icons.person,
|
||||||
|
color: FlutterFlowTheme.of(context).accent1,
|
||||||
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
SizedBox(height: 8),
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 15.0),
|
||||||
|
child: Text(
|
||||||
|
jsonBody['MSG_ORIGEM_DESC'].toString(),
|
||||||
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
fontSize: 16,
|
||||||
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
|
),
|
||||||
|
overflow: TextOverflow.fade,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
SizedBox(height: 8),
|
||||||
|
Text(jsonBody['MSG_TEXTO'].toString(),),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,136 +43,118 @@ class _PeopleOnThePropertyPageWidgetState
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
context.watch<FFAppState>();
|
context.watch<FFAppState>();
|
||||||
|
|
||||||
return GestureDetector(
|
return Scaffold(
|
||||||
onTap: () => _model.unfocusNode.canRequestFocus
|
key: scaffoldKey,
|
||||||
? FocusScope.of(context).requestFocus(_model.unfocusNode)
|
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
||||||
: FocusScope.of(context).unfocus(),
|
appBar: AppBar(
|
||||||
child: Scaffold(
|
|
||||||
key: scaffoldKey,
|
|
||||||
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
||||||
appBar: AppBar(
|
automaticallyImplyLeading: false,
|
||||||
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
forceMaterialTransparency: true,
|
||||||
automaticallyImplyLeading: false,
|
leading: FlutterFlowIconButton(
|
||||||
forceMaterialTransparency: true,
|
borderColor: Colors.transparent,
|
||||||
leading: FlutterFlowIconButton(
|
borderRadius: 30.0,
|
||||||
borderColor: Colors.transparent,
|
borderWidth: 1.0,
|
||||||
borderRadius: 30.0,
|
buttonSize: 60.0,
|
||||||
borderWidth: 1.0,
|
icon: Icon(
|
||||||
buttonSize: 60.0,
|
Icons.keyboard_arrow_left,
|
||||||
icon: Icon(
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
Icons.keyboard_arrow_left,
|
size: 30.0,
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
|
||||||
size: 30.0,
|
|
||||||
),
|
|
||||||
onPressed: () async {
|
|
||||||
context.pop();
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
title: Text(
|
onPressed: () async {
|
||||||
FFLocalizations.of(context).getText(
|
context.pop();
|
||||||
'nsu13r5d' /* Pessoas na Propriedade */,
|
},
|
||||||
),
|
|
||||||
style: FlutterFlowTheme.of(context).headlineMedium.override(
|
|
||||||
fontFamily: 'Nunito',
|
|
||||||
color: FlutterFlowTheme.of(context).primaryText,
|
|
||||||
fontSize: 15.0,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey('Nunito'),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
actions: const [],
|
|
||||||
centerTitle: true,
|
|
||||||
elevation: 0.0,
|
|
||||||
),
|
),
|
||||||
body: SafeArea(
|
title: Text(
|
||||||
top: true,
|
FFLocalizations.of(context).getText(
|
||||||
child: FutureBuilder<ApiCallResponse>(
|
'nsu13r5d' /* Pessoas na Propriedade */,
|
||||||
future: PhpGroup.getPessoasLocalCall.call(
|
|
||||||
cliID: FFAppState().cliUUID,
|
|
||||||
ownID: FFAppState().ownerUUID,
|
|
||||||
devUUID: FFAppState().devUUID,
|
|
||||||
userUUID: FFAppState().userUUID,
|
|
||||||
),
|
|
||||||
builder: (context, snapshot) {
|
|
||||||
// Customize what your widget looks like when it's loading.
|
|
||||||
if (!snapshot.hasData) {
|
|
||||||
return Center(
|
|
||||||
child: SizedBox(
|
|
||||||
width: 50.0,
|
|
||||||
height: 50.0,
|
|
||||||
child: SpinKitCircle(
|
|
||||||
color: FlutterFlowTheme.of(context).primary,
|
|
||||||
size: 50.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
final columnGetPessoasLocalResponse = snapshot.data!;
|
|
||||||
return Builder(
|
|
||||||
builder: (context) {
|
|
||||||
final getPoepleProperty = PhpGroup.getPessoasLocalCall
|
|
||||||
.pessoas(
|
|
||||||
columnGetPessoasLocalResponse.jsonBody,
|
|
||||||
)
|
|
||||||
?.toList() ??
|
|
||||||
[];
|
|
||||||
|
|
||||||
return Column(
|
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: List.generate(getPoepleProperty.length,
|
|
||||||
(getPoeplePropertyIndex) {
|
|
||||||
final getPoeplePropertyItem =
|
|
||||||
getPoepleProperty[getPoeplePropertyIndex];
|
|
||||||
return Row(
|
|
||||||
mainAxisSize: MainAxisSize.max,
|
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
|
||||||
children: [
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.all(4.0),
|
|
||||||
child: Container(
|
|
||||||
width: 50.0,
|
|
||||||
height: 50.0,
|
|
||||||
clipBehavior: Clip.antiAlias,
|
|
||||||
decoration: const BoxDecoration(
|
|
||||||
shape: BoxShape.circle,
|
|
||||||
),
|
|
||||||
child: CachedNetworkImage(
|
|
||||||
fadeInDuration: const Duration(milliseconds: 500),
|
|
||||||
fadeOutDuration: const Duration(milliseconds: 500),
|
|
||||||
imageUrl: 'https://storage.googleapis.com/flutterflow-io-6f20.appspot.com/projects/flutter-freaccess-hub-0xgz9q/assets/7ftdetkzc3s0/360_F_64676383_LdbmhiNM6Ypzb3FM4PPuFP9rHe7ri8Ju.jpg',
|
|
||||||
fit: BoxFit.cover,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Text(
|
|
||||||
getJsonField(
|
|
||||||
getPoeplePropertyItem,
|
|
||||||
r'''$.USU_NOME''',
|
|
||||||
).toString(),
|
|
||||||
style: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.override(
|
|
||||||
fontFamily: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMediumFamily,
|
|
||||||
fontSize: 14.0,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap()
|
|
||||||
.containsKey(FlutterFlowTheme.of(context)
|
|
||||||
.bodyMediumFamily),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
]
|
|
||||||
.divide(const SizedBox(width: 20.0))
|
|
||||||
.addToStart(const SizedBox(width: 40.0)),
|
|
||||||
);
|
|
||||||
}).divide(const SizedBox(height: 3.0)),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
|
style: FlutterFlowTheme.of(context).headlineMedium.override(
|
||||||
|
fontFamily: 'Nunito',
|
||||||
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
|
fontSize: 15.0,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey('Nunito'),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
actions: const [],
|
||||||
|
centerTitle: true,
|
||||||
|
elevation: 0.0,
|
||||||
|
),
|
||||||
|
body: SafeArea(
|
||||||
|
top: true,
|
||||||
|
child: FutureBuilder<ApiCallResponse>(
|
||||||
|
future: PhpGroup.getPessoasLocalCall.call(
|
||||||
|
cliID: FFAppState().cliUUID,
|
||||||
|
ownID: FFAppState().ownerUUID,
|
||||||
|
devUUID: FFAppState().devUUID,
|
||||||
|
userUUID: FFAppState().userUUID,
|
||||||
|
),
|
||||||
|
builder: (context, snapshot) {
|
||||||
|
// Customize what your widget looks like when it's loading.
|
||||||
|
if (!snapshot.hasData) {
|
||||||
|
return Center(
|
||||||
|
child: SizedBox(
|
||||||
|
width: 50.0,
|
||||||
|
height: 50.0,
|
||||||
|
child: SpinKitCircle(
|
||||||
|
color: FlutterFlowTheme.of(context).primary,
|
||||||
|
size: 50.0,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
final columnGetPessoasLocalResponse = snapshot.data!;
|
||||||
|
final getPoepleProperty = PhpGroup.getPessoasLocalCall.pessoas(columnGetPessoasLocalResponse.jsonBody,)?.toList() ??
|
||||||
|
[];
|
||||||
|
return ListView.builder(
|
||||||
|
physics: const AlwaysScrollableScrollPhysics(),
|
||||||
|
shrinkWrap: true,
|
||||||
|
itemCount: getPoepleProperty.length,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
final getPoeplePropertyItem = getPoepleProperty[index];
|
||||||
|
return Row(
|
||||||
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
Padding(
|
||||||
|
padding: const EdgeInsets.all(4.0),
|
||||||
|
child: Container(
|
||||||
|
width: 50.0,
|
||||||
|
height: 50.0,
|
||||||
|
clipBehavior: Clip.antiAlias,
|
||||||
|
decoration: const BoxDecoration(
|
||||||
|
shape: BoxShape.circle,
|
||||||
|
),
|
||||||
|
child: CachedNetworkImage(
|
||||||
|
fadeInDuration: const Duration(milliseconds: 500),
|
||||||
|
fadeOutDuration: const Duration(milliseconds: 500),
|
||||||
|
imageUrl:
|
||||||
|
'https://storage.googleapis.com/flutterflow-io-6f20.appspot.com/projects/flutter-freaccess-hub-0xgz9q/assets/7ftdetkzc3s0/360_F_64676383_LdbmhiNM6Ypzb3FM4PPuFP9rHe7ri8Ju.jpg',
|
||||||
|
fit: BoxFit.cover,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
getJsonField(
|
||||||
|
getPoeplePropertyItem,
|
||||||
|
r'''$.USU_NOME''',
|
||||||
|
).toString(),
|
||||||
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
|
fontFamily: FlutterFlowTheme.of(context).bodyMediumFamily,
|
||||||
|
fontSize: 14.0,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).bodyMediumFamily),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
]
|
||||||
|
.divide(const SizedBox(width: 20.0))
|
||||||
|
.addToStart(const SizedBox(width: 40.0)),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -102,16 +102,11 @@ void dispose() {
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return GestureDetector(
|
return Scaffold(
|
||||||
onTap: () => _model.unfocusNode.canRequestFocus
|
key: scaffoldKey,
|
||||||
? FocusScope.of(context).requestFocus(_model.unfocusNode)
|
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
||||||
: FocusScope.of(context).unfocus(),
|
appBar: buildAppBar(context),
|
||||||
child: Scaffold(
|
body: buildBody(context),
|
||||||
key: scaffoldKey,
|
|
||||||
backgroundColor: FlutterFlowTheme.of(context).primaryBackground,
|
|
||||||
appBar: buildAppBar(context),
|
|
||||||
body: buildBody(context),
|
|
||||||
),
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -120,16 +115,15 @@ void dispose() {
|
||||||
double screenHeight = MediaQuery.of(context).size.height;
|
double screenHeight = MediaQuery.of(context).size.height;
|
||||||
double smallerDimension = screenWidth < screenHeight ? screenWidth : screenHeight;
|
double smallerDimension = screenWidth < screenHeight ? screenWidth : screenHeight;
|
||||||
double dimension = smallerDimension * 0.75;
|
double dimension = smallerDimension * 0.75;
|
||||||
|
|
||||||
double totalTimeInSeconds = 100.0;
|
double totalTimeInSeconds = 100.0;
|
||||||
return SafeArea(
|
return SafeArea(
|
||||||
top: true,
|
// top: true,
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisSize: MainAxisSize.max,
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
children: [
|
children: [
|
||||||
if (_model.isAccess == true && _model.key != null)
|
if (_model.isAccess == true && _model.key != null)
|
||||||
Text(
|
Text(
|
||||||
FFLocalizations.of(context).getVariableText(
|
FFLocalizations.of(context).getVariableText(
|
||||||
ptText: 'Use esse QR Code para acesso',
|
ptText: 'Use esse QR Code para acesso',
|
||||||
enText: 'Use this QR Code for access',
|
enText: 'Use this QR Code for access',
|
||||||
|
|
|
@ -262,7 +262,7 @@ class _SignInTemplateComponentWidgetState
|
||||||
Form(
|
Form(
|
||||||
key: _model.formKey,
|
key: _model.formKey,
|
||||||
autovalidateMode:
|
autovalidateMode:
|
||||||
AutovalidateMode.always,
|
AutovalidateMode.onUserInteraction,
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisSize: MainAxisSize.max,
|
||||||
children: [
|
children: [
|
||||||
|
@ -1007,28 +1007,34 @@ class _SignInTemplateComponentWidgetState
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Text(
|
GestureDetector(
|
||||||
FFLocalizations.of(context).getText(
|
onTap: () async {
|
||||||
'olf967cj' /* Termo de Uso */,
|
await action_blocks.openTermsOfUse(context);
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
ptText: 'Termos de uso',
|
||||||
|
enText: 'Terms of use',
|
||||||
|
),
|
||||||
|
style: FlutterFlowTheme.of(context)
|
||||||
|
.bodyMedium
|
||||||
|
.override(
|
||||||
|
fontFamily:
|
||||||
|
FlutterFlowTheme.of(context)
|
||||||
|
.bodyMediumFamily,
|
||||||
|
color:
|
||||||
|
FlutterFlowTheme.of(context)
|
||||||
|
.primaryText,
|
||||||
|
fontSize: 14.0,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts
|
||||||
|
.asMap()
|
||||||
|
.containsKey(
|
||||||
|
FlutterFlowTheme.of(
|
||||||
|
context)
|
||||||
|
.bodyMediumFamily),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
style: FlutterFlowTheme.of(context)
|
|
||||||
.bodyMedium
|
|
||||||
.override(
|
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context)
|
|
||||||
.bodyMediumFamily,
|
|
||||||
color:
|
|
||||||
FlutterFlowTheme.of(context)
|
|
||||||
.primaryText,
|
|
||||||
fontSize: 14.0,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts
|
|
||||||
.asMap()
|
|
||||||
.containsKey(
|
|
||||||
FlutterFlowTheme.of(
|
|
||||||
context)
|
|
||||||
.bodyMediumFamily),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
|
@ -298,7 +298,7 @@ class _SignUpTemplateComponentWidgetState
|
||||||
Form(
|
Form(
|
||||||
key: _model.formKey,
|
key: _model.formKey,
|
||||||
autovalidateMode:
|
autovalidateMode:
|
||||||
AutovalidateMode.disabled,
|
AutovalidateMode.onUserInteraction,
|
||||||
child: Column(
|
child: Column(
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisSize: MainAxisSize.max,
|
||||||
children: [
|
children: [
|
||||||
|
@ -843,8 +843,9 @@ class _SignUpTemplateComponentWidgetState
|
||||||
TextSpan(
|
TextSpan(
|
||||||
text: FFLocalizations.of(
|
text: FFLocalizations.of(
|
||||||
context)
|
context)
|
||||||
.getText(
|
.getVariableText(
|
||||||
'a9smhn5b' /* Você já tem uma conta? */,
|
ptText: 'Você já tem uma conta? ',
|
||||||
|
enText: 'Already have an account? ',
|
||||||
),
|
),
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
color: FlutterFlowTheme.of(
|
color: FlutterFlowTheme.of(
|
||||||
|
@ -909,19 +910,25 @@ class _SignUpTemplateComponentWidgetState
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
Text(
|
GestureDetector(
|
||||||
FFLocalizations.of(context).getText(
|
onTap: () async {
|
||||||
'huygnka2' /* Termo de Uso */,
|
await action_blocks.openTermsOfUse(context);
|
||||||
|
},
|
||||||
|
child: Text(
|
||||||
|
FFLocalizations.of(context).getVariableText(
|
||||||
|
ptText: 'Termos de uso',
|
||||||
|
enText: 'Terms of use',
|
||||||
|
),
|
||||||
|
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
||||||
|
fontFamily:
|
||||||
|
FlutterFlowTheme.of(context).bodyMediumFamily,
|
||||||
|
color: FlutterFlowTheme.of(context).primaryText,
|
||||||
|
fontSize: 14.0,
|
||||||
|
letterSpacing: 0.0,
|
||||||
|
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
||||||
|
FlutterFlowTheme.of(context).bodyMediumFamily),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
style: FlutterFlowTheme.of(context).bodyMedium.override(
|
|
||||||
fontFamily:
|
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily,
|
|
||||||
color: FlutterFlowTheme.of(context).secondaryText,
|
|
||||||
fontSize: 14.0,
|
|
||||||
letterSpacing: 0.0,
|
|
||||||
useGoogleFonts: GoogleFonts.asMap().containsKey(
|
|
||||||
FlutterFlowTheme.of(context).bodyMediumFamily),
|
|
||||||
),
|
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue