tribally_sdk 0.0.6 copy "tribally_sdk: ^0.0.6" to clipboard
tribally_sdk: ^0.0.6 copied to clipboard

PlatformiOS
outdated

Tribally SDKs enable your users to create communities and bring in more people to talk about the things they love.

example/lib/main.dart

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(
              uid: 'YOUR_USER_TOKEN',
              displayName: 'YOUR_USERNAME',
              apiKey: 'YOUR_APIKEY',
              projectId: 'YOUR_PROJECT_ID',
              //optional
              avatar: 'YOUR_USER_AVATAR_URL',
            onTriballyCreated: (controller){
                //add push notifications for your forum view
                controller.setPushToken('pushToken');
            },
          )),
    );
  }
}
6
likes
110
pub points
0%
popularity

Publisher

unverified uploader

Tribally SDKs enable your users to create communities and bring in more people to talk about the things they love.

Homepage

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on tribally_sdk