18 lines
393 B
Dart
18 lines
393 B
Dart
|
|
import 'package:flutter/material.dart';
|
||
|
|
|
||
|
|
class SignupScreen extends StatefulWidget {
|
||
|
|
const SignupScreen({super.key});
|
||
|
|
|
||
|
|
@override
|
||
|
|
State<SignupScreen> createState() => _SignupScreenState();
|
||
|
|
}
|
||
|
|
|
||
|
|
class _SignupScreenState extends State<SignupScreen> {
|
||
|
|
@override
|
||
|
|
Widget build(BuildContext context) {
|
||
|
|
return const Scaffold(
|
||
|
|
body: Center(child: Text('Signup Screen')),
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|