quickblox_sdk 0.14.2 copy "quickblox_sdk: ^0.14.2" to clipboard
quickblox_sdk: ^0.14.2 copied to clipboard

Quickblox includes everything that brings messaging right into your application - chat, video calling, users, push notifications, etc.

example/lib/main.dart

/*
If you want to accelerate the development of your app, we recommend to use our code samples.
Implement a real-time chat, video calling, and push notifications in your app with our code samples.
A selection of code samples is available on GitHub so feel free to browse them there 'https://github.com/QuickBlox/quickblox-flutter-samples'*/

import 'package:flutter/material.dart';

void main() => runApp(App());

class App extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(home: MainScreen());
  }
}

class MainScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: Text('Quickblox SDK'),
          centerTitle: true,
        ),
        body: Center(
          child: Column(children: [
            Padding(
                padding: EdgeInsets.only(left: 20, top: 50, right: 20, bottom: 0),
                child: Text(
                    "If you want to accelerate the development of your app, we recommend to use our code samples."
                    "\n\n"
                    "Implement a real-time chat, video calling, and push notifications in your app with our code samples."
                    "\n\n"
                    "A selection of code samples is available on GitHub so feel free to browse them there 'https://github.com/QuickBlox/quickblox-flutter-samples'",
                    style: TextStyle(fontSize: 16)))
          ]),
        ));
  }
}
47
likes
100
pub points
85%
popularity

Publisher

unverified uploader

Quickblox includes everything that brings messaging right into your application - chat, video calling, users, push notifications, etc.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on quickblox_sdk