feat: login view

This commit is contained in:
2024-02-07 14:44:40 +07:00
parent 0a347f5e6d
commit 9475767021
10 changed files with 318 additions and 7 deletions

View File

@@ -0,0 +1,10 @@
import 'package:flutter/foundation.dart';
class LoginViewModel extends ChangeNotifier {
bool showPassword = false;
void changeShowPassword() {
showPassword = !showPassword;
notifyListeners();
}
}