Ultima version para Google Play, cambios en politicas y colores. Nuevo aviso legal

This commit is contained in:
2025-03-12 09:54:39 +01:00
parent 0d61ca6d01
commit 6c062682f6
13 changed files with 624 additions and 125 deletions

View File

@ -4,6 +4,7 @@ import 'package:crcivan/bars/app_bar';
import 'package:crcivan/bars/bottom_bar';
import 'package:html/parser.dart' as htmlParser;
import 'package:crcivan/widgets/background_widget.dart';
import 'package:crcivan/pages/utils.dart';
class NoticiasPage extends StatefulWidget {
const NoticiasPage({Key? key}) : super(key: key);
@ -90,17 +91,21 @@ class _NoticiasPageState extends State<NoticiasPage> {
child: ExpansionTile(
title: Text(
titulo!,
style: TextStyle(fontWeight: FontWeight.bold), // Establecer negrita para el título
style: TextStyle(
fontWeight: FontWeight.bold, // Establecer negrita para el título
fontSize: getResponsiveFontSize(context, 18.0),
),
),
children: [
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
contenido!,
style: TextStyle(fontSize: 16.0), // Mantener el texto del contenido en estilo regular
style: TextStyle(
fontSize: getResponsiveFontSize(context, 16.0), // Mantener el texto del contenido en estilo regular
),
),
),
],
),
);
@ -110,4 +115,4 @@ class _NoticiasPageState extends State<NoticiasPage> {
bottomNavigationBar: const CustomBottomBar(),
);
}
}
}