From 9687d25c9dc7af5e3bfc7c41252cc68d532f7bac Mon Sep 17 00:00:00 2001 From: Deven Joshi Date: Wed, 7 Jul 2021 14:23:24 +0530 Subject: [PATCH] feat: Added new docs --- docusaurus/docs/Flutter/stream_chat_flutter/introduction.mdx | 4 ++++ docusaurus/docs/Flutter/stream_chat_flutter/setup.mdx | 3 ++- docusaurus/docs/Flutter/stream_chat_flutter_core/setup.mdx | 2 ++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docusaurus/docs/Flutter/stream_chat_flutter/introduction.mdx b/docusaurus/docs/Flutter/stream_chat_flutter/introduction.mdx index 6f15aa2e..710cf3b5 100644 --- a/docusaurus/docs/Flutter/stream_chat_flutter/introduction.mdx +++ b/docusaurus/docs/Flutter/stream_chat_flutter/introduction.mdx @@ -13,3 +13,7 @@ The UI SDK (`stream_chat_flutter`) contains official Flutter components for Stre While the Stream Chat service provides the backend for messaging and the LLC provides an easy way to use it in your Flutter apps, we wanted to make sure that adding Chat functionality to your app was as quick as possible. +The UI package is built on top of the low-level client and the core package and allows you to build a +full fledged app with either the inbuilt components, modify existing components, or easily add widgets +of your own to match your app's style better. + diff --git a/docusaurus/docs/Flutter/stream_chat_flutter/setup.mdx b/docusaurus/docs/Flutter/stream_chat_flutter/setup.mdx index 4ad387d5..6d93c215 100644 --- a/docusaurus/docs/Flutter/stream_chat_flutter/setup.mdx +++ b/docusaurus/docs/Flutter/stream_chat_flutter/setup.mdx @@ -20,6 +20,7 @@ OR Add this line in the dependencies section of your pubspec.yaml after substituting latest version: +``` dependencies: stream_chat_flutter_core: ^latest_version - +``` diff --git a/docusaurus/docs/Flutter/stream_chat_flutter_core/setup.mdx b/docusaurus/docs/Flutter/stream_chat_flutter_core/setup.mdx index e295ba8f..f39f243e 100644 --- a/docusaurus/docs/Flutter/stream_chat_flutter_core/setup.mdx +++ b/docusaurus/docs/Flutter/stream_chat_flutter_core/setup.mdx @@ -20,6 +20,8 @@ OR Add this line in the dependencies section of your pubspec.yaml after substituting latest version: +``` dependencies: stream_chat_flutter_core: ^latest_version +```