articles_page.dart 581 Bytes
Newer Older
1
import 'package:flutter/material.dart';
2
import 'package:practica1_flutter/src/pages/home_page.dart';
3 4
class ArticlesPage extends StatelessWidget {
  const ArticlesPage({Key? key}) : super(key: key);
5 6 7

  @override
  Widget build(BuildContext context) {
8 9 10 11 12 13 14 15 16 17 18 19
    return Scaffold(
      appBar: AppBar(
        title: Text('Estoy en Articulos'),
        backgroundColor: Colors.red,
        actions:[
          Center(
              child: const Icon(Icons.shop),
          )
        ],
      ),
      body: Center(
          child: Text('Bienvenido a los articulos'),
20 21 22
      ),
    );
  }
23
}