You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SmartFit_Mobile/lib/View/login/signup_view.dart

22 lines
649 B

import 'package:responsive_builder/responsive_builder.dart';
import 'package:smartfit_app_mobile/View/login/Mobile/android_signup_view.dart';
import 'package:flutter/material.dart';
import 'package:smartfit_app_mobile/View/login/web/web_signup_view.dart';
class SignUpView extends StatefulWidget {
const SignUpView({super.key});
@override
State<SignUpView> createState() => _SignUpViewState();
}
class _SignUpViewState extends State<SignUpView> {
@override
Widget build(BuildContext context) {
return ScreenTypeLayout.builder(
mobile: (_) => const MobileSignUpView(),
desktop: (_) => const WebSignUpView(),
);
}
}