22 lines
512 B
Dart
22 lines
512 B
Dart
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('Корзина'),
|
|
));
|
|
}
|
|
}
|