| 30 | { |
| 31 | public: |
| 32 | UxSampleTest(EvasApp *app, bool renderMode) { |
| 33 | mApp = app; |
| 34 | mRenderMode = renderMode; |
| 35 | mResourceList = EvasApp::jsonFiles(std::string(DEMO_DIR) + "UXSample_1920x1080/"); |
| 36 | mRepeatMode = LottieView::RepeatMode::Restart; |
| 37 | } |
| 38 | |
| 39 | void showPrev() { |
| 40 | if (mResourceList.empty()) return; |
nothing calls this directly
no test coverage detected