embalses listos y notificaciones con titulo. Faltan mejoras
This commit is contained in:
@ -13,6 +13,8 @@ class EmbalsesPage extends StatefulWidget {
|
|||||||
|
|
||||||
class _EmbalsesPageState extends State<EmbalsesPage> {
|
class _EmbalsesPageState extends State<EmbalsesPage> {
|
||||||
List<Map<String, dynamic>> embalsesData = [];
|
List<Map<String, dynamic>> embalsesData = [];
|
||||||
|
List<String> descripciones = ['Cota (m)', 'Volumen (Hm3)', 'Entrada (l/s)', 'Salida (l/s)'];
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
super.initState();
|
super.initState();
|
||||||
@ -135,14 +137,15 @@ List<Map<String, dynamic>> embalsesData = [];
|
|||||||
padding: const EdgeInsets.symmetric(horizontal: 8.0),
|
padding: const EdgeInsets.symmetric(horizontal: 8.0),
|
||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: listaElementos.map<Widget>((elemento) {
|
children: List.generate(
|
||||||
return Text(
|
listaElementos.length,
|
||||||
elemento,
|
(index) => Text(
|
||||||
|
'${descripciones[index]}: ${listaElementos[index]}',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontWeight: FontWeight.normal,
|
fontWeight: FontWeight.normal,
|
||||||
),
|
),
|
||||||
);
|
),
|
||||||
}).toList(),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@ -153,10 +156,10 @@ List<Map<String, dynamic>> embalsesData = [];
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),),
|
),
|
||||||
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
||||||
bottomNavigationBar: const CustomBottomBar(),
|
bottomNavigationBar: const CustomBottomBar(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -13,6 +13,7 @@ class NoticiasPage extends StatefulWidget {
|
|||||||
|
|
||||||
class _NoticiasPageState extends State<NoticiasPage> {
|
class _NoticiasPageState extends State<NoticiasPage> {
|
||||||
List<String> noticiasData = [];
|
List<String> noticiasData = [];
|
||||||
|
List<String> titulos = [];
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
@ -25,9 +26,11 @@ class _NoticiasPageState extends State<NoticiasPage> {
|
|||||||
if (response.statusCode == 200) {
|
if (response.statusCode == 200) {
|
||||||
var document = htmlParser.parse(response.body);
|
var document = htmlParser.parse(response.body);
|
||||||
var dataElements = document.querySelectorAll('html > body > div > center > table > tbody > tr > td > div > center > table > tbody > tr > td > table > tbody > tr > td > font');
|
var dataElements = document.querySelectorAll('html > body > div > center > table > tbody > tr > td > div > center > table > tbody > tr > td > table > tbody > tr > td > font');
|
||||||
|
var tituloElements = document.querySelectorAll('html > body > div > center > table > tbody > tr > td > div > center > table > tbody > tr > td > table > tbody > tr > td > b > a');
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
noticiasData = dataElements.map((element) => element.text.trim()).toList();
|
noticiasData = dataElements.map((element) => element.text.trim()).toList();
|
||||||
|
titulos = tituloElements.map((element) => element.text.trim()).toList();
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
throw Exception('Failed to load noticias data');
|
throw Exception('Failed to load noticias data');
|
||||||
@ -49,11 +52,27 @@ class _NoticiasPageState extends State<NoticiasPage> {
|
|||||||
ListView.builder(
|
ListView.builder(
|
||||||
itemCount: noticiasData.length,
|
itemCount: noticiasData.length,
|
||||||
itemBuilder: (context, index) {
|
itemBuilder: (context, index) {
|
||||||
return ListTile(
|
if (index < titulos.length) {
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
ListTile(
|
||||||
|
title: Text(titulos[index], style: TextStyle(fontWeight: FontWeight.bold)),
|
||||||
|
),
|
||||||
|
ListTile(
|
||||||
title: Text(noticiasData[index]),
|
title: Text(noticiasData[index]),
|
||||||
|
),
|
||||||
|
],
|
||||||
);
|
);
|
||||||
|
} else {
|
||||||
|
// Si el índice está fuera del rango de titulos, muestra un ListTile sin título
|
||||||
|
return ListTile(
|
||||||
|
subtitle: Text(noticiasData[index]),
|
||||||
|
);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
|
|
||||||
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
bottomNavigationBar: const CustomBottomBar(),
|
bottomNavigationBar: const CustomBottomBar(),
|
||||||
|
|||||||
Reference in New Issue
Block a user