Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Socialprofiles not working #55

Open
cor277 opened this issue Mar 30, 2021 · 1 comment
Open

Socialprofiles not working #55

cor277 opened this issue Mar 30, 2021 · 1 comment

Comments

@cor277
Copy link

cor277 commented Mar 30, 2021

Hi, i try to write social profiles,

Future buildContact() async {
Contact internal = new Contact();
PostalAddress address = PostalAddress(label: 'Home');
address.street = AddressController.value.text;
address.city = CityController.value.text;
internal.emails = [
Item(label: 'Personal', value: EmailController.value.text)
];
internal.socialProfiles = [
Item(label: 'newsocial', value: IDController.value.text)
];
internal.givenName = NameController.value.text;
internal.familyName = SurnameController.value.text;
internal.phones = [
Item(label: 'Mobile', value: TelephoneController.value.text)
];
address.country = StateController.value.text;
internal.urls = [
Item(label: 'Website', value: WebsiteController.value.text)
];
internal.postalAddresses = [address];
return internal;
}

it write ALL fields, but not the social profiles into phone, and, if you write a social profile into contact, the get method have all fields, but social profile... in empty!

@ericmartineau
Copy link
Contributor

These have not been fully implemented on Android yet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants