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
Review Skip to content | |
Navigation Menu | |
develop4God | |
Devocional_nuevo | |
Code | |
Issues | |
Pull requests | |
1 | |
Actions |
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
Review Skip to content | |
Navigation Menu | |
develop4God | |
Devocional_nuevo | |
Code | |
Issues | |
Pull requests | |
1 | |
Actions |
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="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Términos y Condiciones de Uso - Devocionales Cristianos</title> | |
<meta name="title-key" content="legal.terms.title"> | |
<meta name="description" content="Términos y Condiciones de Uso de la aplicación Devocionales Cristianos. Normativas y condiciones de uso de la aplicación móvil."> | |
<!-- Enlace al CDN de Tailwind CSS para estilos básicos --> |
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="es"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title data-i18n="legal.privacy.title"></title> | |
<meta name="title-key" content="legal.privacy.title"> | |
<meta name="description" content="Política de Privacidad de la aplicación Devocionales Cristianos. Información sobre el manejo de datos y privacidad de los usuarios."> | |
<!-- Enlace al CDN de Tailwind CSS para estilos básicos --> |
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
/** | |
* Simplified Internationalization system for Devocionales Cristianos website | |
*/ | |
class I18n { | |
constructor() { | |
this.currentLang = 'es'; // Default language | |
this.translations = {}; | |
this.supportedLanguages = { | |
'es': { name: 'Español', flag: '🇪🇸' }, |
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
Skip to content | |
Navigation Menu | |
Devocional_nuevo | |
Code | |
Issues | |
Pull requests | |
1 | |
Migrate Prayer Module from Provider to BLoC Pattern #56 | |
Draft |
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
Migrate Prayer Module from Provider to BLoC Pattern#56 | |
Preview | |
Switch back | |
· | |
Feedback | |
Draft | |
Copilot | |
wants to merge 4 commits into | |
main |
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
// CAMBIOS QUIRÚRGICOS APLICADOS: | |
// 1. _onChunkCompleted(): Verificación de pausa ANTES de incrementar chunk (línea ~380) | |
// 2. stop(): Removidas validaciones restrictivas para stop inmediato (línea ~680) | |
// 3. pause(): Reforzada cancelación de timer de emergencia (línea ~650) | |
import 'dart:async'; | |
import 'dart:developer' as developer; | |
import 'dart:io' show Platform; | |
import 'package:devocional_nuevo/models/devocional_model.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
import 'package:devocional_nuevo/controllers/audio_controller.dart'; | |
import 'package:devocional_nuevo/models/devocional_model.dart'; | |
import 'package:devocional_nuevo/services/tts_service.dart'; | |
import 'package:devocional_nuevo/utils/bubble_constants.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:provider/provider.dart'; | |
class TtsPlayerWidget extends StatefulWidget { | |
final Devocional devocional; | |
final void Function()? onCompleted; |
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
// CAMBIOS QUIRÚRGICOS APLICADOS: | |
// 1. stop(): Reforzado para stop inmediato sin restricciones (línea ~480) | |
// 2. forceStop(): Mejorado para garantizar stop completo (línea ~580) | |
import 'dart:async'; | |
import 'package:devocional_nuevo/models/devocional_model.dart'; | |
import 'package:devocional_nuevo/services/tts_service.dart'; | |
import 'package:flutter/widgets.dart'; |