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.
22 lines
724 B
22 lines
724 B
import 'package:flutter/material.dart';
|
|
import 'package:responsive_builder/responsive_builder.dart';
|
|
import 'package:smartfit_app_mobile/view/profile/mobile/mobile_change_password.dart';
|
|
import 'package:smartfit_app_mobile/view/profile/web/web_change_password.dart';
|
|
|
|
class ChangePasswordView extends StatefulWidget {
|
|
const ChangePasswordView({super.key});
|
|
|
|
@override
|
|
State<ChangePasswordView> createState() => _ChangePasswordViewState();
|
|
}
|
|
|
|
class _ChangePasswordViewState extends State<ChangePasswordView> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ScreenTypeLayout.builder(
|
|
mobile: (_) => const MobileChangePasswordView(),
|
|
desktop: (_) => const WebChangePasswordView(),
|
|
);
|
|
}
|
|
}
|