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