import 'package:flutter/material.dart'; import 'package:gymlink_module_web/components/app_bar.dart'; import 'package:gymlink_module_web/components/heading.dart'; class HistoryPage extends StatelessWidget { const HistoryPage({ super.key, }); @override Widget build(BuildContext context) { return const Scaffold( appBar: GymLinkAppBar(), body: Column(mainAxisAlignment: MainAxisAlignment.start, children: [ GymLinkHeader(title: 'История заказов'), Center( child: Text('История заказов'), ) ]), ); } }