at_contacts_group_flutter 3.1.2 at_contacts_group_flutter: ^3.1.2 copied to clipboard
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(),
));