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.
aku_new_community/lib/provider/sign_up_provider.dart

31 lines
515 B

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();
}
}