chat_call_core 0.0.1 chat_call_core: ^0.0.1 copied to clipboard
Chat Call Core ADVN
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add chat_call_core
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
chat_call_core: ^0.0.1
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:chat_call_core/constaints.dart';
import 'package:chat_call_core/core/local/chatDao.dart';
import 'package:chat_call_core/core/local/profileDao.dart';
import 'package:chat_call_core/core/local/sqlChatDao.dart';
import 'package:chat_call_core/core/models/conversation.dart';
import 'package:chat_call_core/core/models/dtoExtensions.dart';
import 'package:chat_call_core/core/models/dtos.dart';
import 'package:chat_call_core/core/models/profile.dart';
import 'package:chat_call_core/helper/call_helper.dart';
import 'package:chat_call_core/helper/connect_helper.dart';
import 'package:chat_call_core/helper/status_helper.dart';
import 'package:chat_call_core/presentation/call/call_page.dart';
import 'package:chat_call_core/presentation/call/utils/exts.dart';
import 'package:chat_call_core/presentation/call/utils/theme.dart';
import 'package:chat_call_core/presentation/call/widgets/controls.dart';
import 'package:chat_call_core/presentation/call/widgets/no_video.dart';
import 'package:chat_call_core/presentation/call/widgets/participant.dart';
import 'package:chat_call_core/presentation/call/widgets/participant_info.dart';
import 'package:chat_call_core/presentation/call/widgets/text_field.dart';
import 'package:chat_call_core/presentation/chat/firebase/chat_firebase_page.dart';
import 'package:chat_call_core/presentation/chat/local/ConversationsListScreen.dart';
import 'package:chat_call_core/presentation/chat/local/chat_local_page.dart';
import 'package:chat_call_core/presentation/chat/local/widgets/ConversationList.dart';
import 'package:chat_call_core/presentation/chat/local/widgets/conversationHeader.dart';
import 'package:chat_call_core/presentation/chat/local/widgets/conversationView.dart';
import 'package:chat_call_core/presentation/chat/local/widgets/userIcon.dart';