Customizing Stream Chat iOS/Swift App for a Unique Look: A Quick Start Guide

11 min read

Using the Stream Chat iOS SDK, you can modify the visual appearance of your chat messaging app with minimal effort.

Amos G.
Amos G.
Published January 18, 2023
Customize Stream Chat iOS header image

This article demonstrates how to perform basic customizations such as swapping colors, fonts, and icons with assets, color, and typographic styles from your style guide. You can create a free chat trial account to follow along with the tutorial.

Resources

You can find and download the completed Xcode project on GitHub. This tutorial is for a UIKit (Storyboard) app. You can read the SwiftUI version or the advanced SwiftUI theming tutorial. You can also refer to the video SwiftUI tutorial Theming and Customizing Your Stream Chat SwiftUI App on YouTube.

Basic Theming Overview

Appearance object

The Stream Chat iOS SDK allows basic customization through the Appearance object. It is an object that contains the visual settings of the messaging application. Using the Appearance object, you can change the inherent colors, symbols (icons), and font styles the SDK offers. To do advanced customization, the SDK provides the possibility to use views injection. Making complex customizations like adding a custom attachment and swapping views go beyond the scope of this tutorial.

You can modify the icons and font styles the SDK presents in the chat app through the Appearance object directly as follows:

swift
Appearance.default.images.sendArrow = UIImage(systemName: "paperplane.circle.fill")! 
swift
Appearance.default.fonts.body = UIFont(name: "Freehand-Regular", size: 24)!

The code snippets above override the send button in the compose area and the body font, as demonstrated in the image below.

All screens

The Appearance class has another object called ColorPalette() that gives access to the set of colors the SDK supports. You can use the Appearance and color palette objects to alter the background of the channel list and the conversations area with the code snippet below.

swift
Appearance.default.colorPalette.background = .systemGray6.

Start With a Blank iOS/Storyboard Project

Create a new iOS project in Xcode. Select Storyboard as the Interface, Swift as the Language, and name the project. This sample app is called ChatTailor.swift, but you can use any name you prefer and save the project somewhere on your computer.

Fetch the Stream iOS SDK From GitHub and Set It Up

After creating a blank iOS/Storyboard project you should fetch the iOS SDK from GitHub and configure it. This tutorial doesn’t cover the configuration of the SDK to work with the Xcode project. To learn more about how to get the SDK up and running with the Storyboard project, check the article Building An iOS Chat App With Swift.

Changing the Tint Color Without Using the Appearance Object

The SDK allows you to replace the system-defined colors for navigation cues/icons and button items without using the Appearance object. The color used for defining these items is called tint color.

When you modify the tint color, it will affect the following interface elements:

  • Icons
    • Back navigation icon
    • Instant Commands icon
    • Applied reaction icons
    • The blinking cursor for the compose area
    • The floating scroll-to-bottom icon at the bottom-right of the conversations area.
  • Text
    • Thread Reply
    • Context menus
    • Links in sent messages
  • Buttons
    • Right arrow button for displaying instant commands and attachment icons

You can override the system-defined tint color using the scene method in the Swift file SceneDelegate.swift. The scene method has a parameter called _ scene. You should use a guard statement to check whether the _ scene parameter passed is of the type UIWindowScene. Otherwise, it should go ahead without doing anything. Then, use a ForEach loop to set the tint color you prefer.

swift
// MARK:Override the system-defined tint color
        guard let scene = scene as? UIWindowScene else { return }
        scene.windows.forEach { brandColor in
            brandColor.tintColor = .systemPink
        }

The sample code below shows the complete implementation of how to override the tint color in SceneDelegate.swift

swift
//  SceneDelegate.swift
//  ChatTailor

import UIKit
import StreamChat
import StreamChatUI

class SceneDelegate: UIResponder, UIWindowSceneDelegate {

    var window: UIWindow?

    func scene(
        _ scene: UIScene,
        willConnectTo session: UISceneSession,
        options connectionOptions: UIScene.ConnectionOptions

The image below demonstrates the before and after versions of the interface elements affected by changing the tint color.

Tint color

Modifying Default Colors With Your Brand’s Colors

Using the Appearance and ColorPalette() objects, you can tweak the colors of elements in the chat app. In this section, you will customize the color values of the following views.

  • Background color
    • Message bubbles
    • Attachments
  • Text Color
    • Navigation title
    • Channel list items summary
    • Incoming and outgoing messages
    • Context menu
    • Timestamps
    • Date
    • Giphy logo text
    • Placeholder text for the compose area
    • Instant Commands label
    • Previous online status (last seen)
    • Read indicator (double checkmark)
    • Sent indicator (single checkmark)
    • System-wide messages (information about deleted messages)

You can begin by adding a new file, CustomizeChannelVC.swift containing a view controller class. This custom channel view controller must conform to the SDK’s chat channel view controller, ChatChannelVC.

swift
//  CustomizeChannelVC.swift
//  ChatTailor

import StreamChat
import StreamChatUI
import UIKit

// This class must conform to the iOS SDK's chat channel view controller
class CustomizeChannelVC: ChatChannelVC {}

Next, open SceneDelegate.swift and add the function applyChatCustomizations() { } below the StreamChat and StreamChatUI imports. The closure of this method should contain all the basic customizations. Additionally, you should set the default channel view controller for the app to the custom view controller class in the closure of the apply chat customizations method.

swift
import UIKit
import StreamChat
import StreamChatUI

// Perform all basic customizations in this function
func applyChatCustomizations() {
  // Setting the default channel view controller to the custom view controller class
 Components.default.channelVC = CustomizeChannelVC.self
 }

Customizing Background Colors
In the closure of the apply chat customizations function, add:

  • Appearance.default.colorPalette.background6 = .systemTeal to modify the outgoing chat bubbles background color to system teal.
  • Appearance.default.colorPalette.background1 = .systemTeal to change the background color of outgoing chat bubbles to system teal.
  • Appearance.default.colorPalette.background8 = .systemCyan to change the backgrounds of incoming message bubbles and the scroll-to-bottom icon to system cyan.
  • Appearance.default.colorPalette.background = .systemCyan to set the background colors of the channel list, conversations area, and context menus to a cyan color.
Channel list background color
Building your own app? Get early access to our Livestream or Video Calling API and launch in days!

Refer to the image below to see the before and after background colors.

All screens

Customize Text Color and the Color of UI Elements
Below the customizations of the background in the closure of the apply chat customizations function, add:

  • Appearance.default.colorPalette.text = .green to modify the text color of the navigation title, outgoing chat bubbles, incoming chat bubbles, context menus, compose area, Giphy, and reveal button for swipe-to-delete action to green.
  • Appearance.default.colorPalette.staticColorText = .systemCyan to change the text color for the Giphy logo text, and date (when a message was sent).
  • Appearance.default.colorPalette.subtitleText = .magenta to override the text colors of the channel list message summary, timestamps, placeholder for the compose area, Instant Commands label, Giphy label, and previous online status (last seen).
  • Appearance.default.colorPalette.textLowEmphasis = .orange to swap the color of the sent indicator (single checkmark) for the channel list, system-wide messages (deleted message), and conversations area.
  • Appearance.default.colorPalette.accentPrimary = .link to set the text color of the read indicator to a link (blue) color.

You can see all the changes in this section in the before and after screenshots above.

How To Customize Fonts

The iOS SDK supports all of Apple’s Dynamic Type Sizes listed in the table below.

StyleWeightSize (points)Leading (points)
Large TitleRegular3441
Title 1Regular2834
Title 2Regular2228
Title 3Regular2025
HeadlineSemibold1722
BodyRegular1722
CalloutRegular1621
SubheadRegular1520
FootnoteRegular1318
Caption 1Regular1216
Caption 2Regular1113

These built-in text styles provide great legibility and scale seamlessly on different devices. You should use the Appearance object to modify these standard text styles. For example, to change the body font size and type, add Appearance.default.fonts.body = UIFont(name: "Helvetica Neue", size: 32)! below the text color customizations in the apply chat customizations function. The code snippet sets the font of the body text to Helvetica Neue with a size of 32 points using the UIFont class. The ! symbol at the end of the statement is used to force-unwrap the optional value returned by the UIFont(name: , size: ) initializer. Increasing the body font size affects the text on the text field and message bubbles.

Increase font size

Add a Custom Font

The SDK allows you to use a custom font instead of the default text styles. This example uses a custom Google Font called Freehand. Find the custom font you like and drag it to the app bundle. Select the following option in the image below in the window that pops up and click Finish.

Add custom font

Register the Custom Font in info.plist

To Implement the custom font in the application, you should register it in the app’s info.plist file.

  • Click the app’s folder in the Project Navigator. The folder for this sample project is ChatTailor.
  • Select the info tab and click the + icon below the keys to add a new key.
  • Choose Fonts provided by application
  • Set the Item 0's Type as String and enter the font name. This project has the font name Freehand-Regular.ttf.
Register the custom font

In SceneDelegate.swift, add Appearance.default.fonts.body = UIFont(name: "Freehand-Regular", size: 24)! in the closure of applyChatCustomizations(), similar to the previous customizations. The code snippet above will display the Freehand custom font as shown in the screenshot below.

Custom font

Swapping the SDK-Provided Icons With SF Symbols and Google Material Symbols

The SDK provides several symbols and images you can replace with the icons you prefer. Find the names of symbols you want to swap through the Appearance and Images objects. Then, add a period (.) at the end of the code snippet Appearance.default.images. to display a list of symbols to replace in the app. It shows in the image below.

Replaceable icons

This section demonstrates how to replace the following icons with SF Symbols and Google Material Symbols.

  • Send icon on the right side of the compose area (text field)
  • Small and large reactions icons
    You can follow the steps in this section to swap other icons in the SDK. As demonstrated previously, do all the image/icon overrides in the closure of the applyChatCustomizations() method in SceneDelegate.swift. Below the previous colors and fonts customization statements, Add:
  • Appearance.default.images.sendArrow = UIImage(systemName: "paperplane.circle.fill")! to replace the send icon in the text field.
Send arrow
  • Appearance.default.images.reactionLoveBig = UIImage(systemName: "bolt.heart.fill")! to replace the large heart icon in the reactions menu.
  • Appearance.default.images.reactionLoveSmall = UIImage(systemName: "bolt.heart.fill")! to change the small overlayed heart icon appearing after tapping the large heart icon in the reactions menu. The code snippet replaces the default heart icon with a bolt heart icon from the SF Symbols library.

Apart from using SF Symbols to replace the SDK-provided icons, you can swap them with Google Material icons. The example below shows how to change the Wut reaction icon to an approval delegation icon from the Google Material icons library.

Appearance.default.images.reactionWutBig = (UIImage(named:"approval_delegation"))!

Appearance.default.images.reactionWutSmall = (UIImage(named:"approval_delegation"))!

The code snippets above replace the large and small versions of the Wut icon.

Replace Wut icon

Putting All the Basic Customizations Together

The sample code below shows how to do all the basic customizations, changing colors, fonts, and icons in SceneDelegate.swift using the function applyChatCustomizations(). You can download the finished project on GitHub.

swift
//  SceneDelegate.swift
//  ChatTailor

import UIKit
import StreamChat
import StreamChatUI

// Perform all basic customizations in this function
func applyChatCustomizations() {

    // MARK: Customize Background Color

    // Change the outgoing chat message bubble to a teal color
    Appearance.default.colorPalette.background6 = .systemTeal

Conclusion

To wrap up, customizing your Stream Chat iOS app is an excellent way to give your messaging app a unique look and feel. The guide in this tutorial gave you a starting point, including a wealth of information on overriding the SDK-provided colors, fonts, and icons with your design assets and brand styles. With the insights provided in this tutorial, you should be well on your way to creating a truly personalized and distinct Stream Chat iOS app experience.

What Do I Do Next?

After reading this article, here are your next steps:
If you plan to do complex customization, check out the theming section of the documentation and the related advanced SwiftUI theming tutorial.
Download the finished project from GitHub and review all the procedures used for the modifications.
If you do not have a Stream account yet, consider signing up for a free trial.

decorative lines
Integrating Video With Your App?
We've built an audio and video solution just for you. Launch in days with our new APIs & SDKs!
Check out the BETA!