tribally_sdk 0.1.0 tribally_sdk: ^0.1.0 copied to clipboard
Tribally SDKs enable your users to create communities and bring in more people to talk about the things they love.
import 'package:flutter/material.dart';
import 'package:tribally_sdk/tribally_sdk.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: TriballyView(
primary: Colors.green,
onSurface: Colors.orangeAccent.withOpacity(0.8),
text: Colors.blueGrey,
background: Colors.white12,
onTriballyCreated: (controller) {
//add push notifications for your forum view
controller.setPushToken('pushToken');
controller.setConfiguration(
uid: 'YOUR_USER_TOKEN',
displayName: 'YOUR_USERNAME',
apiProject: ApiProject(
api: 'YOUR_APIKEY',
id: 'YOUR_PROJECT_ID',
),
//optional
avatar: 'YOUR_USER_AVATAR_URL',
);
},
)),
);
}
}