Files
friflex_flutter_starter/lib/features/auth/presentation/screens/auth_screen.dart

22 lines
421 B
Dart
Raw Normal View History

2025-01-21 14:24:31 +03:00
import 'package:flutter/material.dart';
/// {@template AuthScreen}
///
/// {@endtemplate}
class AuthScreen extends StatelessWidget {
/// {@macro AuthScreen}
const AuthScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('AuthScreen'),
),
body: const Center(
child: Text('AuthScreen'),
),
);
}
}