flutter 如何使用intl_phone_number_input删除国家选择功能

mwkjh3gx  于 2023-03-31  发布在  Flutter
关注(0)|答案(1)|浏览(147)

当按下国旗时,国家选择功能不应该出现,并且不应该能够选择不同的国家。

Stack(
            children: [
              InternationalPhoneNumberInput(
                onInputChanged: (value) {},
                cursorColor: ColorConstants.blackColor,
                formatInput: false,
                initialValue: number,
                textFieldController: controller,
                selectorConfig:
                    const SelectorConfig(selectorType: PhoneInputSelectorType.BOTTOM_SHEET,),
                inputDecoration: InputDecoration(
                    contentPadding: EdgeInsets.only(
                      bottom: 15.h,
                    ),
                    border: InputBorder.none,
                    hintText: TextConstants.phoneNumber,
                    hintStyle: TextStyle(color: ColorConstants.customGreyColor, fontSize: 16.sp)),
              ),
              Positioned(
                  left: 92.w,
                  top: 5.h,
                  child: Container(
                    height: 40.h,
                    width: 1.w,
                    color: Colors.grey.shade400,
                  ))
            ],
          )),

blpfk2vs

blpfk2vs1#

您可以传递国家名称,对于土耳其国家,它将是TR

InternationalPhoneNumberInput(
      countries: ["TR"],

如果您有兴趣查找其他国家,可以查看country_list.dart

相关问题