import 'package:flutter/material.dart'; class HomePage extends StatelessWidget { const HomePage({Key? key}) : super(key: key); @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('Home Page'), ), body: Center( child: ElevatedButton( onPressed: () { Navigator.pushNamed(context, 'articles'); }, child: const Text('Hola home_page'), ), ), ); } }