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.

13 lines
233 B

2 years ago
  1. import 'package:flutter_riverpod/flutter_riverpod.dart';
  2. class IsLoginNotifier extends StateNotifier<bool> {
  3. IsLoginNotifier() : super(true);
  4. selectLogin() {
  5. state = true;
  6. }
  7. selectRegister() {
  8. state = false;
  9. }
  10. }