mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-10 07:07:19 +00:00
18 lines
562 B
Dart
18 lines
562 B
Dart
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:syncrow_web/pages/auth/view/login_mobile_page.dart';
|
|
import 'package:syncrow_web/pages/auth/view/login_web_page.dart';
|
|
import 'package:syncrow_web/utils/responsive_layout.dart';
|
|
|
|
class LoginPage extends StatelessWidget {
|
|
const LoginPage({super.key});
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const ResponsiveLayout(
|
|
desktopBody: LoginWebPage(),
|
|
mobileBody:LoginMobilePage()
|
|
);
|
|
}
|
|
}
|