blob: 181f4ba5ee4d7717004b08a5b1ad72a06286ad1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "SingleChildControl.h"
#include "cru/ui/render/ScrollRenderObject.h"
namespace cru::ui::controls {
class CRU_UI_API ScrollView
: public SingleChildControl<render::ScrollRenderObject> {
public:
static constexpr auto kControlName = "ScrollView";
ScrollView();
};
} // namespace cru::ui::controls
|