Initial commit: Penyerahan final Source code Tugas Akhir
This commit is contained in:
19
lib/providers/email_provider.dart
Normal file
19
lib/providers/email_provider.dart
Normal file
@ -0,0 +1,19 @@
|
||||
// import 'package:flutter/material.dart';
|
||||
|
||||
// class EmailProvider with ChangeNotifier {
|
||||
// String? _currentEmail = '';
|
||||
// String? _currentName = '';
|
||||
|
||||
// String? get currentEmail => _currentEmail;
|
||||
// String? get currentName => _currentName;
|
||||
|
||||
// set currentEmail(String? email) {
|
||||
// _currentEmail = email;
|
||||
// notifyListeners();
|
||||
// }
|
||||
|
||||
// set currentName(String? name) {
|
||||
// _currentName = name;
|
||||
// notifyListeners();
|
||||
// }
|
||||
// }
|
Reference in New Issue
Block a user