From 4c6f796c11c81b118bc70d960185bf59a5ad046a Mon Sep 17 00:00:00 2001 From: Salvatore Giordano Date: Mon, 2 Mar 2020 11:37:07 +0100 Subject: [PATCH] Update README.md --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index e8666f7c..e770051e 100644 --- a/README.md +++ b/README.md @@ -41,34 +41,34 @@ You should then run `flutter packages get` We provide 2 Widgets dedicated to business logic and state management: -- StreamChat -- StreamChannel +- `StreamChat` +- `StreamChannel` ### UI Components These are the available Widgets that you can use to build your application UI. -Every widget uses the StreamChat or StreamChannel widgets to manage the state and communicate with Stream services. +Every widget uses the `StreamChat` or `StreamChannel` widgets to manage the state and communicate with Stream services. -- ChannelHeader -- ChannelImage -- ChannelListView -- ChannelName -- ChannelPreview -- MessageInput -- MessageListView -- MessageWidget -- StreamChatTheme -- ThreadHeader +- `ChannelHeader` +- `ChannelImage` +- `ChannelListView` +- `ChannelName` +- `ChannelPreview` +- `MessageInput` +- `MessageListView` +- `MessageWidget` +- `StreamChatTheme` +- `ThreadHeader` ### Customizing styles The Flutter SDK comes with a fully designed set of widgets which you can customize to fit with your application style and typography. -Changing the theme of Chat widgets works in a very similar way that MaterialApp and Theme do. +Changing the theme of Chat widgets works in a very similar way that `MaterialApp` and `Theme` do. Out of the box all chat widgets use their own default styling, there are two ways to change the styling: - 1. Initialize the StreamChatTheme from your existing MaterialApp style + 1. Initialize the `StreamChatTheme` from your existing `MaterialApp` style ```dart class MyApp extends StatelessWidget { final Client client;