Files
flutter-frame/lib/features/auth/presentation/screens/register_screen.dart
2026-03-01 07:55:59 +09:00

28 lines
660 B
Dart

import 'package:flutter/material.dart';
import '../widgets/register_form.dart';
class RegisterScreen extends StatelessWidget {
const RegisterScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: SingleChildScrollView(
padding: const EdgeInsets.all(24),
child: ConstrainedBox(
constraints: const BoxConstraints(maxWidth: 400),
child: const Card(
child: Padding(
padding: EdgeInsets.all(32),
child: RegisterForm(),
),
),
),
),
),
);
}
}