mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
20 lines
540 B
Dart
20 lines
540 B
Dart
|
|
import 'package:flutter/material.dart';
|
|
import 'package:syncrow_web/pages/auth/view/forget_password_mobile_page.dart';
|
|
import 'package:syncrow_web/pages/auth/view/forget_password_web_page.dart';
|
|
import 'package:syncrow_web/utils/responsive_layout.dart';
|
|
|
|
|
|
class ForgetPasswordPage extends StatelessWidget {
|
|
const ForgetPasswordPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const ResponsiveLayout(
|
|
desktopBody: ForgetPasswordWebPage(),
|
|
mobileBody:ForgetPasswordWebPage()
|
|
);
|
|
}
|
|
}
|
|
|