Skip to content

Instantly share code, notes, and snippets.

@perymerdeka
Created October 24, 2021 16:06
Show Gist options
  • Save perymerdeka/d379dfa417dc934553f9acf76e4fcf5b to your computer and use it in GitHub Desktop.
Save perymerdeka/d379dfa417dc934553f9acf76e4fcf5b to your computer and use it in GitHub Desktop.
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