mobile_adaptive_learning/lib/features/auth/screens/signup_screen.dart

18 lines
393 B
Dart
Raw Normal View History

2024-08-12 02:17:57 +00:00
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')),
);
}
}