mirror of
https://github.com/smmarty/friflex_flutter_starter.git
synced 2025-12-22 17:40:45 +00:00
22 lines
421 B
Dart
22 lines
421 B
Dart
|
|
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'),
|
||
|
|
),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|