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 ChooseShareRoomMVP extends StatelessWidget {
  const ChooseShareRoomMVP({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.share_room, style: theme.textTheme.headlineLarge),
            const SizedBox(height: 16),
            Text(context.strings.share_room_subtitle_mvp, style: theme.textTheme.bodySmall),
            const SizedBox(height: 16),
            Text(context.strings.subtitle_mvp, style: theme.textTheme.bodySmall),
          ],
        ),
      ),
    );
  }
}