0 purchases
truv flutter
Truv Bridge for Flutter #
A Flutter plugin that provides Truv Bridge
integration
Installation #
Add truv_flutter as a dependency in your pubspec.yaml file:
dependencies:
...
truv_flutter: <version>
copied to clipboard
Usage #
class MainScreen extends StatelessWidget {
final bridgeToken = 'yourbridgetoken';
Widget build(BuildContext context) {
return TruvBridge(
bridgeToken: bridgeToken,
onEvent: (String event) {
},
);
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.