at_contacts_group_flutter 3.0.2 copy "at_contacts_group_flutter: ^3.0.2" to clipboard
at_contacts_group_flutter: ^3.0.2 copied to clipboard

outdated

A Flutter plugin project to provide group functionality with contacts using @‎platform.

Now for some internet optimism. #

at_contacts_group_flutter #

A flutter plugin to provide group functionality for atsign contacts. Helps to manage contacts.

Sample usage #

It is expected that the app will first create an AtClientService instance and authenticate an atsign.

The groups service needs to be initialised with the atClient from the AtClientService, current atsign and the root server.

initializeGroupService(
        clientSdkService.atClientServiceInstance.atClient, currentAtSign,
        rootDomain: MixedConstants.ROOT_DOMAIN);

Navigating to the groups list is done simply by using:

Navigator.of(context).push(MaterialPageRoute(
      builder: (BuildContext context) => GroupList(),
    ));