Ultima version para Google Play, cambios en politicas y colores. Nuevo aviso legal
This commit is contained in:
@ -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(),
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user