storeNameInput method

Widget storeNameInput()

Implementation

Widget storeNameInput() {
  return Container(
    margin: const EdgeInsets.symmetric(vertical: (10)),
    child: CustomTextFieldWidget(
      controller: controller.storeName,
      keyboardType: TextInputType.text,
      addHint: true,
      validator: (value) => Validators.validateEmpty(value),
      hintText: Strings.storeName,
      textInputAction: TextInputAction.next,
    ),
  );
}