fuzbiz 0.0.5 copy "fuzbiz: ^0.0.5" to clipboard
fuzbiz: ^0.0.5 copied to clipboard

A Flutter package for building a smart chat app where users can log in and ask questions about services the model is trained to understand.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:fuzionest_chatai/app/app_intialization/app.dart';
import 'package:fuzionest_chatai/app/widgets/system_widgets/run_app_error.dart';
import 'package:flutter_native_splash/flutter_native_splash.dart';
import 'app/app_intialization/controller/app_main.dart';

Future<void> main() async {
  try {
    WidgetsBinding widgetsBinding = WidgetsFlutterBinding.ensureInitialized();
    FlutterNativeSplash.preserve(widgetsBinding: widgetsBinding);
    await AppMainOnInit.appOnInit();
    await SystemChrome.setPreferredOrientations([DeviceOrientation.portraitUp]);
    runApp(AppMain());
    FlutterNativeSplash.remove();
  } catch (e) {
    FlutterNativeSplash.remove();
    runApp(ErrorScreen(e.toString()));
  }
}
2
likes
160
points
51
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A Flutter package for building a smart chat app where users can log in and ask questions about services the model is trained to understand.

Homepage
Repository (GitHub)

License

MIT (license)

Dependencies

flutter, webview_flutter

More

Packages that depend on fuzbiz