Goods details page

This commit is contained in:
2024-05-01 20:17:20 +03:00
parent f941b26224
commit 16d0ddca78
12 changed files with 231 additions and 100 deletions

21
lib/pages/basket.dart Normal file
View File

@@ -0,0 +1,21 @@
import 'package:flutter/material.dart';
class BasketPage extends StatelessWidget {
const BasketPage({
super.key,
});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
leading: IconButton(
icon: const Icon(Icons.arrow_back),
onPressed: () => Navigator.pop(context),
),
title: const Text('Корзина'),
),
body: const Center(
child: Text('Корзина'),
));
}
}