shipbook

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

shipbook

This package provides a Shipbook class which can log your message to shipbook server.
For example, you can use Shipbook in your libraries like this:
// import.dart
import 'package:shipbook/shipbook.dart';

/// init shipbook
@override
void initState() {
super.initState();

Shipbook.start(
'SHIPBOOK_APP_ID', 'SHIPBOOK_TOKEN');
}
copied to clipboard
...and usage:
// main.dart
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: ElevatedButton(
onPressed: () {
Log.i('tag', 'message');
},
child: const Text('Log'),
),
),
),
);
}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator