137 lines
4.4 KiB
Dart
137 lines
4.4 KiB
Dart
import '/backend/api_requests/api_calls.dart';
|
|
import '/components/alert_box_custom_widget.dart';
|
|
import '/flutterlib/flutter_drop_down.dart';
|
|
import '/flutterlib/flutter_theme.dart';
|
|
import '/flutterlib/flutter_util.dart';
|
|
import '/flutterlib/flutter_widgets.dart';
|
|
import '/flutterlib/form_field_controller.dart';
|
|
import 'newuser_widget.dart' show NewuserWidget;
|
|
import 'package:badges/badges.dart' as badges;
|
|
import 'package:aligned_dialog/aligned_dialog.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_svg/flutter_svg.dart';
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class NewuserModel extends FlutterModel<NewuserWidget> {
|
|
/// State fields for stateful widgets in this page.
|
|
|
|
final unfocusNode = FocusNode();
|
|
final formKey = GlobalKey<FormState>();
|
|
// State field(s) for first_name widget.
|
|
FocusNode? firstNameFocusNode;
|
|
TextEditingController? firstNameController;
|
|
String? Function(BuildContext, String?)? firstNameControllerValidator;
|
|
String? _firstNameControllerValidator(BuildContext context, String? val) {
|
|
if (val == null || val.isEmpty) {
|
|
return FFLocalizations.of(context).getText(
|
|
'axj7oby4' /* Field is required */,
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
// State field(s) for last_name widget.
|
|
FocusNode? lastNameFocusNode;
|
|
TextEditingController? lastNameController;
|
|
String? Function(BuildContext, String?)? lastNameControllerValidator;
|
|
String? _lastNameControllerValidator(BuildContext context, String? val) {
|
|
if (val == null || val.isEmpty) {
|
|
return FFLocalizations.of(context).getText(
|
|
'6x7o5abu' /* Field is required */,
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
// State field(s) for password widget.
|
|
FocusNode? passwordFocusNode;
|
|
TextEditingController? passwordController;
|
|
String? Function(BuildContext, String?)? passwordControllerValidator;
|
|
String? _passwordControllerValidator(BuildContext context, String? val) {
|
|
if (val == null || val.isEmpty) {
|
|
return FFLocalizations.of(context).getText(
|
|
'aaywzshn' /* Field is required */,
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
// State field(s) for phone widget.
|
|
FocusNode? phoneFocusNode;
|
|
TextEditingController? phoneController;
|
|
String? Function(BuildContext, String?)? phoneControllerValidator;
|
|
String? _phoneControllerValidator(BuildContext context, String? val) {
|
|
if (val == null || val.isEmpty) {
|
|
return FFLocalizations.of(context).getText(
|
|
'lbhytb31' /* Field is required */,
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
// State field(s) for email widget.
|
|
FocusNode? emailFocusNode;
|
|
TextEditingController? emailController;
|
|
String? Function(BuildContext, String?)? emailControllerValidator;
|
|
String? _emailControllerValidator(BuildContext context, String? val) {
|
|
if (val == null || val.isEmpty) {
|
|
return FFLocalizations.of(context).getText(
|
|
'epamj3bm' /* Field is required */,
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
// State field(s) for role_id widget.
|
|
String? roleIdValue;
|
|
FormFieldController<String>? roleIdValueController;
|
|
// State field(s) for role_id2 widget.
|
|
String? roleId2Value;
|
|
FormFieldController<String>? roleId2ValueController;
|
|
// State field(s) for status widget.
|
|
String? statusValue;
|
|
FormFieldController<String>? statusValueController;
|
|
// Stores action output result for [Backend Call - API (create user)] action in Button widget.
|
|
ApiCallResponse? apiResulth88;
|
|
|
|
/// Initialization and disposal methods.
|
|
|
|
void initState(BuildContext context) {
|
|
firstNameControllerValidator = _firstNameControllerValidator;
|
|
lastNameControllerValidator = _lastNameControllerValidator;
|
|
passwordControllerValidator = _passwordControllerValidator;
|
|
phoneControllerValidator = _phoneControllerValidator;
|
|
emailControllerValidator = _emailControllerValidator;
|
|
}
|
|
|
|
void dispose() {
|
|
unfocusNode.dispose();
|
|
firstNameFocusNode?.dispose();
|
|
firstNameController?.dispose();
|
|
|
|
lastNameFocusNode?.dispose();
|
|
lastNameController?.dispose();
|
|
|
|
passwordFocusNode?.dispose();
|
|
passwordController?.dispose();
|
|
|
|
phoneFocusNode?.dispose();
|
|
phoneController?.dispose();
|
|
|
|
emailFocusNode?.dispose();
|
|
emailController?.dispose();
|
|
}
|
|
|
|
/// Action blocks are added here.
|
|
|
|
/// Additional helper methods are added here.
|
|
}
|