import 'package:flutter/material.dart'; import '../app_theme.dart'; class AuthScaffold extends StatelessWidget { final String title; final String subtitle; final Widget child; final bool showBackButton; const AuthScaffold({ super.key, required this.title, required this.subtitle, required this.child, this.showBackButton = true, }); @override Widget build(BuildContext context) { return Scaffold( backgroundColor: AppTheme.bgAuth, body: SafeArea( child: SingleChildScrollView( child: Padding( padding: const EdgeInsets.symmetric(horizontal: 24), child: Column( crossAxisAlignment: CrossAxisAlignment.start, children: [ const SizedBox(height: 20), // Header row Row( children: [ if (showBackButton) GestureDetector( onTap: () => Navigator.pop(context), behavior: HitTestBehavior.opaque, child: const SizedBox( width: 32, height: 32, child: Align( alignment: Alignment.centerLeft, child: Icon(Icons.arrow_back, size: 24), ), ), ), const Spacer(), GestureDetector( onTap: () {}, child: const SizedBox( width: 32, height: 32, child: Align( alignment: Alignment.centerRight, child: Icon(Icons.info_outline, size: 24), ), ), ), ], ), const SizedBox(height: 24), Text( title, style: const TextStyle( fontSize: 30, fontWeight: FontWeight.bold, height: 1.2, color: AppTheme.textPrimary, ), ), const SizedBox(height: 8), Text( subtitle, style: const TextStyle( fontSize: 14, color: AppTheme.textSecondary, height: 1.5, ), ), const SizedBox(height: 40), child, ], ), ), ), ), ); } }