**PhoneInput** BitPhoneInput is an input component for entering phone numbers with a searchable country selector that shows the flag and the dialing code of each country.
**Basic**:
**Binding**:
**NoSearchBox**:
**Custom countries**:
private readonly List customCountries =
[
BitCountries.UnitedStates,
BitCountries.Canada,
BitCountries.UnitedKingdom,
BitCountries.Germany,
BitCountries.France,
];
**FullWidth**:
**Disabled & ReadOnly**:
**Events**:
**RTL**:
Number: @bindingNumber
Country: @bindingCountry?.Name
Full number: +@bindingCountry?.Code@bindingNumber
private string? bindingNumber;
private BitCountry? bindingCountry;
**Label**:
Selected country: @changedCountry?.Name
private BitCountry? changedCountry;
**Style & Class**: