noma_chat 0.10.0
noma_chat: ^0.10.0 copied to clipboard
Plug & play Flutter chat: SDK with REST + real-time client, offline Hive cache, UI adapter and ready-to-use UI components for the Nomasystems chat backend.
import 'package:flutter/material.dart';
import 'package:hive_ce_flutter/hive_flutter.dart';
import 'app.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
// SDK persistent cache (Hive) must be initialized before NomaChat.create.
await Hive.initFlutter();
runApp(const NomaChatExampleApp());
}