flutter_chat/packages/flutter_chat_view/lib/flutter_chat_view.dart

18 lines
590 B
Dart
Raw Normal View History

2022-11-01 08:33:32 +01:00
// SPDX-FileCopyrightText: 2022 Iconica
//
// SPDX-License-Identifier: BSD-3-Clause
2024-02-14 11:10:35 +01:00
///
2024-01-12 16:52:14 +01:00
library flutter_chat_view;
2022-10-14 15:00:22 +02:00
2024-01-12 16:52:14 +01:00
export 'package:flutter_chat_interface/flutter_chat_interface.dart';
2022-10-14 15:00:22 +02:00
export 'src/components/chat_row.dart';
export 'src/config/chat_options.dart';
2022-11-08 09:29:21 +01:00
export 'src/config/chat_translations.dart';
2022-10-14 15:00:22 +02:00
export 'src/screens/chat_detail_screen.dart';
2024-01-12 16:52:14 +01:00
export 'src/screens/chat_profile_screen.dart';
2022-10-14 15:00:22 +02:00
export 'src/screens/chat_screen.dart';
export 'src/screens/new_chat_screen.dart';
2024-03-22 09:31:51 +01:00
export 'src/screens/new_group_chat_overview_screen.dart';
export 'src/screens/new_group_chat_screen.dart';