import 'package:comwell_key_app/common/components/comwell_app_bar.dart';
import 'package:comwell_key_app/utils/l10n_utils.dart';
import 'package:flutter/material.dart';
class FindBookingMVP extends StatelessWidget {
const FindBookingMVP({super.key});
@override
Widget build(BuildContext context) {
final theme = Theme.of(context);
return Scaffold(
backgroundColor: theme.colorScheme.surface,
appBar: const ComwellAppBar(),
body: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const SizedBox(height: 24),
Text(context.strings.find_booking, style: theme.textTheme.headlineLarge),
const SizedBox(height: 16),
Text(context.strings.find_booking_subtitle_mvp, style: theme.textTheme.bodySmall),
const SizedBox(height: 16),
Text(context.strings.subtitle_mvp, style: theme.textTheme.bodySmall),
],
),
),
);
}
}