quickblox_sdk 0.16.6-rc.1 copy "quickblox_sdk: ^0.16.6-rc.1" to clipboard
quickblox_sdk: ^0.16.6-rc.1 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)))
          ]),
        ));
  }
}
copied to clipboard
49
likes
120
points
608
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.17 - 2025.04.01

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

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on quickblox_sdk