| 351 | registerLayerClass(EditableTextLayerClass::makeForTextView(_resources, textLayerClass)); |
| 352 | registerLayerClass(Valdi::makeShared<TextAnimationGroupLayerClass>(_resources, layerClass)); |
| 353 | registerLayerClass( |
| 354 | Valdi::makeShared<ScrollLayerClass>(_resources, platformType == Valdi::PlatformTypeAndroid, layerClass)); |
| 355 | registerLayerClass(Valdi::makeShared<SpinnerLayerClass>(_resources, layerClass)); |
| 356 | registerLayerClass(Valdi::makeShared<ValdiShapeLayerClass>(_resources, layerClass)); |
| 357 | |
| 358 | auto imageViewClass = Valdi::makeShared<ImageLayerClass>(_resources, layerClass); |
| 359 | registerLayerClass(imageViewClass); |
| 360 | registerLayerClass(Valdi::makeShared<AnimatedImageLayerClass>(_resources, layerClass)); |
| 361 | } |
| 362 | |
| 363 | SnapDrawingViewManager::~SnapDrawingViewManager() = default; |
| 364 | |
| 365 | Valdi::StringBox SnapDrawingViewManager::getClassName(const ILayerClass& layerClass) const { |
| 366 | switch (_platformType) { |
no test coverage detected