This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="it"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <title>Privacy Policy — Quote (Marconi Software)</title> | |
| <style> | |
| body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.55; max-width: 760px; margin: 0 auto; padding: 24px 16px 64px; color: #1a1a1a; } | |
| h1 { font-size: 1.6rem; margin-bottom: 0.25rem; } | |
| h2 { font-size: 1.15rem; margin-top: 1.75rem; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Terms of Use (EULA) — HrCloud AI</title> | |
| <meta name="description" content="HrCloud AI Terms of Use and End User License Agreement"> | |
| <meta name="robots" content="index, follow"> | |
| <link rel="canonical" href="https://hrcloudai.com/terms/"> | |
| <style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Privacy Policy — HrCloud AI</title> | |
| <meta name="description" content="HrCloud AI Privacy Policy"> | |
| <meta name="robots" content="index, follow"> | |
| <link rel="canonical" href="https://hrcloudai.com/privacy/"> | |
| <style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <title>Privacy Policy — YogaFit / YogaVision</title> | |
| <meta name="description" content="Privacy Policy for YogaFit (YogaVision) by View Software S.r.l." /> | |
| <style> | |
| :root { | |
| --bg: #f5f0e8; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ViewPropTypes will be removed from React Native. Migrate to ViewPropTypes exported from 'deprecated-react-native-prop-types'. | |
| at node_modules/react-native/index.js:470:4 in module.exports.get__ViewPropTypes | |
| at node_modules/react-native-router-flux/src/Router.js:135:14 in <global> | |
| at node_modules/metro-runtime/src/polyfills/require.js:339:11 in loadModuleImplementation | |
| at node_modules/react-native-router-flux/src/index.js:2:0 in <global> | |
| at node_modules/metro-runtime/src/polyfills/require.js:339:11 in loadModuleImplementation | |
| at App.js:5:0 in <global> | |
| at node_modules/metro-runtime/src/polyfills/require.js:339:11 in loadModuleImplementation | |
| at node_modules/expo/AppEntry.js:3:0 in <global> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "success": true, | |
| "data": [ | |
| { | |
| "_id": 439264, | |
| "_type": "PreventiveMaint", | |
| "_user": "admin", | |
| "__user_description": "Administrator", | |
| "_beginDate": "2022-05-04T12:39:29.58256Z", | |
| "_tenant": 388180, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:advance_pdf_viewer/advance_pdf_viewer.dart'; | |
| //Funzione che si occupa di visualizzare la stampa | |
| Future<void> stampa(String path) async { | |
| final pdf = await rootBundle.load(path); | |
| await Printing.layoutPdf(onLayout: (_) => pdf.buffer.asUint8List()); | |
| } | |
| //Funzione che che permette di tornare alla pagina di generazione del rapporto | |
| void apriGenerazioneRapportino(BuildContext context, Rapporto rc) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'dart:async'; | |
| import 'package:advance_pdf_viewer/advance_pdf_viewer.dart'; | |
| import 'package:back_button_interceptor/back_button_interceptor.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/services.dart'; | |
| import 'package:printing/printing.dart'; | |
| import 'package:myapp/Model/Rapporto.dart'; | |
| import 'package:myapp/Model/Supporto.dart'; | |
| import 'package:myapp/Model/Utente.dart'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class DataSouceSelezionaArticolo extends SearchDelegate<String>{ | |
| Rapporto rp; | |
| DataSouceSelezionaArticolo(this.rp); | |
| @override | |
| List<Widget> buildActions(BuildContext context) { | |
| return [IconButton(icon: Icon(Icons.clear), onPressed: () { | |
| query=""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:MyApp/Model/Cantiere.dart'; | |
| import 'package:MyApp/Model/Ristorante.dart'; | |
| import 'package:MyApp/Model/Utente.dart'; | |
| import 'Api.dart'; | |
| import 'dart:convert'; | |
| //Classe che rapprresenta il controller del Ristorante | |
| class RistoranteController { | |
| //Costruttore | |
| RistoranteController(); |
NewerOlder