quickblox_sdk 0.6.7-beta copy "quickblox_sdk: ^0.6.7-beta" to clipboard
quickblox_sdk: ^0.6.7-beta copied to clipboard

outdated

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
0
pub points
84%
popularity

Publisher

unverified uploader

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

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on quickblox_sdk