Stream Chat Unreal SDK
Loading...
Searching...
No Matches
ThemeContextWidget.h
1// Copyright 2022 Stream.IO, Inc. All Rights Reserved.
2
3// Fill out your copyright notice in the Description page of Project Settings.
4
5#pragma once
6
7#include "ContextWidget.h"
8#include "CoreMinimal.h"
9#include "ThemeDataAsset.h"
10
11#include "ThemeContextWidget.generated.h"
12
16UCLASS()
17class STREAMCHATUI_API UThemeContextWidget final : public UContextWidget
18{
19 GENERATED_BODY()
20
21public:
22 UThemeContextWidget();
23 static UThemeDataAsset* GetTheme(const UWidget* Widget);
24 UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Stream Chat")
25 UThemeDataAsset* Theme;
26};