Created
October 24, 2021 16:06
-
-
Save perymerdeka/d379dfa417dc934553f9acf76e4fcf5b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:providers/widgets/product_grid.dart'; | |
class ProductsOverviewScreen extends StatelessWidget { | |
const ProductsOverviewScreen({Key? key}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: const Text('MyShop'), | |
), | |
body: const ProductGrid(), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment