我想从IntlPhoneField
(包intl_phone_field
)获取完整编号
我使用控制器来获取号码。但它不包括国家代码,
IntlPhoneField(
disableLengthCheck: true,
controller: phoneNumberCon,
decoration: InputDecoration(
hintText: 'Phone Number',
),
),
我试过了,
String input = phoneNumberCon.text.trim();
String finalone = "${phone.countrycode} + $input";
它不工作是因为phone.countrycode
不工作。
2条答案
按热度按时间gywdnpxw1#
您可以使用
onChanged
方法并尝试如下传递其值,首先如下定义新变量:那就试试这个
bttbmeg02#
您是否检查了图书馆要求的大写?
你写了:
应该是这样吗?