Skip to content

Commit 593da49

Browse files
committed
chore: update README
1 parent 2e79624 commit 593da49

File tree

9 files changed

+11
-10
lines changed

9 files changed

+11
-10
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [Flyer Chat](https://flyer.chat) 💬
22

3-
**Ship faster with a go-to chat SDK for Flutter.**
3+
![Ship faster with a go-to chat SDK for Flutter](banner.png)
44

55
[![Pub Version](https://img.shields.io/pub/v/flutter_chat_ui?logo=flutter&color=orange)](https://pub.dev/packages/flutter_chat_ui) [![Pub Likes](https://img.shields.io/pub/likes/flutter_chat_ui?logo=flutter&color=orange&label=pub%20likes)](https://pub.dev/packages/flutter_chat_ui) [![Stars](https://img.shields.io/github/stars/flyerhq/flutter_chat_ui?style=flat&color=orange&logo=github)](https://github.com/flyerhq/flutter_chat_ui/stargazers) [![melos](https://img.shields.io/badge/maintained%20with-melos-ffffff.svg?color=orange)](https://github.com/invertase/melos)
66

@@ -32,7 +32,7 @@ Then, import and use the `Chat` widget.
3232

3333
For detailed usage, customization options, different message types, controllers, and more complex scenarios, please refer to the **full documentation**:
3434

35-
➡️ **[flyer.chat/introduction](https://flyer.chat/introduction)** ⬅️
35+
➡️ **[flyer.chat/docs/flutter/introduction](https://flyer.chat/docs/flutter/introduction)** ⬅️
3636

3737
Explore the comprehensive [example application](https://github.com/flyerhq/flutter_chat_ui/tree/main/examples/flyer_chat) to see various features and customizations in action.
3838

@@ -53,6 +53,7 @@ These are the foundational packages included when you install `flutter_chat_ui`:
5353
Opinionated packages for rendering different message types. You can also build your own!
5454

5555
- [`flyer_chat_text_message`](https://github.com/flyerhq/flutter_chat_ui/tree/main/packages/flyer_chat_text_message): Renders text messages with markdown support.
56+
- [`flyer_chat_text_stream_message`](https://github.com/flyerhq/flutter_chat_ui/tree/main/packages/flyer_chat_text_stream_message): Renders streamed text messages with markdown and fade-in animation support.
5657
- [`flyer_chat_image_message`](https://github.com/flyerhq/flutter_chat_ui/tree/main/packages/flyer_chat_image_message): Renders image messages.
5758
- [`flyer_chat_file_message`](https://github.com/flyerhq/flutter_chat_ui/tree/main/packages/flyer_chat_file_message): Renders file messages.
5859
- [`flyer_chat_system_message`](https://github.com/flyerhq/flutter_chat_ui/tree/main/packages/flyer_chat_system_message): Renders system messages (e.g., user joined).

banner.png

783 KB
Loading

packages/flutter_chat_core/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The classes and utilities within this package are used implicitly when you confi
2828

2929
For detailed usage, customization options, different message types, controllers, and more complex scenarios, please refer to the **full documentation**:
3030

31-
➡️ **[flyer.chat/introduction](https://flyer.chat/introduction)** ⬅️
31+
➡️ **[flyer.chat/docs/flutter/introduction](https://flyer.chat/docs/flutter/introduction)** ⬅️
3232

3333
Explore the comprehensive [example application](https://github.com/flyerhq/flutter_chat_ui/tree/main/examples/flyer_chat) to see various features and customizations in action.
3434

packages/flutter_chat_ui/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [Flyer Chat](https://flyer.chat) 💬
22

3-
**Ship faster with a go-to chat SDK for Flutter.**
3+
![Ship faster with a go-to chat SDK for Flutter](../../banner.png)
44

55
[![Pub Version](https://img.shields.io/pub/v/flutter_chat_ui?logo=flutter&color=orange)](https://pub.dev/packages/flutter_chat_ui) [![Pub Likes](https://img.shields.io/pub/likes/flutter_chat_ui?logo=flutter&color=orange&label=pub%20likes)](https://pub.dev/packages/flutter_chat_ui) [![Stars](https://img.shields.io/github/stars/flyerhq/flutter_chat_ui?style=flat&color=orange&logo=github)](https://github.com/flyerhq/flutter_chat_ui/stargazers) [![melos](https://img.shields.io/badge/maintained%20with-melos-ffffff.svg?color=orange)](https://github.com/invertase/melos)
66

@@ -32,7 +32,7 @@ Then, import and use the `Chat` widget.
3232

3333
For detailed usage, customization options, different message types, controllers, and more complex scenarios, please refer to the **full documentation**:
3434

35-
➡️ **[flyer.chat/introduction](https://flyer.chat/introduction)** ⬅️
35+
➡️ **[flyer.chat/docs/flutter/introduction](https://flyer.chat/docs/flutter/introduction)** ⬅️
3636

3737
Explore the comprehensive [example application](https://github.com/flyerhq/flutter_chat_ui/tree/main/examples/flyer_chat) to see various features and customizations in action.
3838

packages/flyer_chat_file_message/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add this package to your `pubspec.yaml` alongside `flutter_chat_ui`:
1515
```yaml
1616
dependencies:
1717
flutter_chat_ui: ^2.0.0
18-
flyer_chat_file_message: ^ # Use the latest version
18+
flyer_chat_file_message: ^2.0.0
1919
```
2020
2121
Then run `flutter pub get`.

packages/flyer_chat_image_message/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Add this package to your `pubspec.yaml` alongside `flutter_chat_ui`:
2323
```yaml
2424
dependencies:
2525
flutter_chat_ui: ^2.0.0
26-
flyer_chat_image_message: ^ # Use the latest version
26+
flyer_chat_image_message: ^2.0.0
2727
```
2828
2929
Then run `flutter pub get`.

packages/flyer_chat_system_message/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add this package to your `pubspec.yaml` alongside `flutter_chat_ui`:
1515
```yaml
1616
dependencies:
1717
flutter_chat_ui: ^2.0.0
18-
flyer_chat_system_message: ^ # Use the latest version
18+
flyer_chat_system_message: ^2.0.0
1919
```
2020
2121
Then run `flutter pub get`.

packages/flyer_chat_text_message/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add this package to your `pubspec.yaml` alongside `flutter_chat_ui`:
1515
```yaml
1616
dependencies:
1717
flutter_chat_ui: ^2.0.0
18-
flyer_chat_text_message: ^ # Use the latest version
18+
flyer_chat_text_message: ^2.0.0
1919
```
2020
2121
Then run `flutter pub get`.

packages/flyer_chat_text_stream_message/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Add this package to your `pubspec.yaml` alongside `flutter_chat_ui`:
1515
```yaml
1616
dependencies:
1717
flutter_chat_ui: ^2.0.0
18-
flyer_chat_text_stream_message: ^ # Use the latest version
18+
flyer_chat_text_stream_message: ^2.0.0
1919
```
2020
2121
Then run `flutter pub get`.

0 commit comments

Comments
 (0)