This commit is contained in:
2024-10-21 11:14:11 +02:00
parent 713504042b
commit fc28fe347c

View File

@@ -490,14 +490,14 @@ class _BusinessDetailsState extends State<BusinessDetails> {
const SizedBox(height: 10.0), const SizedBox(height: 10.0),
MIHTextField( MIHTextField(
controller: typeController, controller: typeController,
hintText: "Business Type", hintText: widget.arguments.business!.type,
editable: false, editable: false,
required: true, required: true,
), ),
const SizedBox(height: 15.0), const SizedBox(height: 15.0),
MIHTextField( MIHTextField(
controller: titleController, controller: titleController,
hintText: "title", hintText: widget.arguments.businessUser!.title,
editable: false, editable: false,
required: true, required: true,
), ),