155 lines
5.4 KiB
Dart
155 lines
5.4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_project/bars/app_bar';
|
|
import 'package:flutter_project/bars/bottom_bar';
|
|
import 'package:flutter_project/BloC/contenedores_event.dart';
|
|
import 'package:flutter_project/pages/noticias';
|
|
import 'package:flutter_project/pages/pregon';
|
|
import 'package:flutter_project/pages/embalses';
|
|
|
|
|
|
|
|
class MyHomePage extends StatelessWidget {
|
|
const MyHomePage({Key? key, required this.title}) : super(key: key);
|
|
final String title;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: const CustomAppBar(),
|
|
body: Container(
|
|
|
|
decoration: const BoxDecoration(
|
|
image: DecorationImage(
|
|
image: AssetImage('assets/logo-fondo-verde.png'),
|
|
fit: BoxFit.cover,
|
|
),
|
|
|
|
),
|
|
child: Center(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: <Widget>[
|
|
InkWell(
|
|
onTap: () { Navigator.push(
|
|
context,
|
|
MaterialPageRoute(builder: (context) => const NoticiasPage()),
|
|
);},
|
|
child: SizedBox(
|
|
width: 250.0,
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 20.0),
|
|
child: Container(
|
|
padding: const EdgeInsets.all(8.0),
|
|
decoration: BoxDecoration(
|
|
color: Color.fromARGB(255, 78, 169, 6),
|
|
borderRadius: BorderRadius.circular(7.0),
|
|
),
|
|
child: const Text(
|
|
'Noticias',
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: Color.fromARGB(255, 255, 255, 255),
|
|
fontSize: 27.0,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
InkWell(
|
|
onTap: () {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(builder: (context) => const Pregon()),
|
|
);
|
|
},
|
|
child: SizedBox(
|
|
width: 250.0,
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 20.0),
|
|
child: Container(
|
|
padding: const EdgeInsets.all(8.0),
|
|
decoration: BoxDecoration(
|
|
color: Color.fromARGB(255, 78, 169, 6),
|
|
borderRadius: BorderRadius.circular(7.0),
|
|
),
|
|
child: const Text(
|
|
'Pregón',
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 27.0,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
InkWell(
|
|
onTap: () {
|
|
Navigator.push(
|
|
context,
|
|
MaterialPageRoute(builder: (context) => const EmbalsesPage()),
|
|
);
|
|
},
|
|
child: SizedBox(
|
|
width: 250.0,
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 20.0),
|
|
child: Container(
|
|
padding: const EdgeInsets.all(8.0),
|
|
decoration: BoxDecoration(
|
|
color: Color.fromARGB(255, 78, 169, 6),
|
|
borderRadius: BorderRadius.circular(7.0),
|
|
),
|
|
child: const Text(
|
|
'Embalses',
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 27.0,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
InkWell(
|
|
onTap: () {
|
|
launchAemetURL();
|
|
},
|
|
child: SizedBox(
|
|
width: 250.0,
|
|
child: Padding(
|
|
padding: const EdgeInsets.only(bottom: 20.0),
|
|
child: Container(
|
|
padding: const EdgeInsets.all(8.0),
|
|
decoration: BoxDecoration(
|
|
color: Color.fromARGB(255, 78, 169, 6),
|
|
borderRadius: BorderRadius.circular(7.0),
|
|
),
|
|
child: const Text(
|
|
'Tiempo',
|
|
textAlign: TextAlign.center,
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontSize: 27.0,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
bottomNavigationBar: const CustomBottomBar(),
|
|
);
|
|
}
|
|
}
|