at_client_mobile 1.0.0 copy "at_client_mobile: ^1.0.0" to clipboard
at_client_mobile: ^1.0.0 copied to clipboard

outdated

This SDK provides the essential methods for building an app using the @protocol with useful device specific features for iOS and Android applications.

example/main.dart

import 'package:at_client_mobile/at_client_mobile.dart';

Future<void> main(List<String> arguments) async {
  var atClientServiceInstance = AtClientService();
  var atClientPreference = AtClientPreference()
    ..isLocalStoreRequired = true
    ..commitLogPath = 'storage/commitlog'
    ..syncStrategy = SyncStrategy.IMMEDIATE
    ..rootDomain = 'root.atsign.com'
    ..hiveStoragePath = 'storage/hive';
  var result = await atClientServiceInstance.onboard(
      atClientPreference: atClientPreference,
      atsign: '@alice',
      namespace: 'buzz');
  print(result);
  var atClientInstance = atClientServiceInstance.atClient;
  print(atClientInstance);
}
222
likes
0
pub points
71%
popularity

Publisher

verified publisheratsign.org

This SDK provides the essential methods for building an app using the @protocol with useful device specific features for iOS and Android applications.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

unknown (LICENSE)

Dependencies

at_client, at_commons, at_lookup, at_utils, crypton, flutter, flutter_keychain, hive, path

More

Packages that depend on at_client_mobile