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.
33 lines
521 B
33 lines
521 B
2 years ago
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class SignUpProvider extends ChangeNotifier {
|
||
|
String? _nickName;
|
||
|
|
||
|
String? get nickName => _nickName;
|
||
|
|
||
|
String? _tel;
|
||
|
|
||
|
String? get tel => _tel;
|
||
|
|
||
|
Map<String, dynamic> get toMap => {
|
||
|
'nickName': _nickName,
|
||
|
'tel': _tel,
|
||
|
};
|
||
|
|
||
|
setNickName(String name) {
|
||
|
_nickName = name;
|
||
|
notifyListeners();
|
||
|
}
|
||
|
|
||
|
setTel(String tel) {
|
||
|
_tel = tel;
|
||
|
notifyListeners();
|
||
|
}
|
||
|
|
||
|
clearAll() {
|
||
|
_nickName = null;
|
||
|
_tel = null;
|
||
|
notifyListeners();
|
||
|
}
|
||
|
}
|