| 75 | using CoreLess<ContainerView>::CoreLess; |
| 76 | |
| 77 | void init() override |
| 78 | { |
| 79 | stylesheet = FlexJsonStringify( |
| 80 | {"direction" : "Row", "alignItems" : "Center", "flexGrow" : 1, "padding" : {"all" : 10}}); |
| 81 | _label = std::make_shared<Label>(); |
| 82 | addChildView(_label); |
| 83 | } |
| 84 | |
| 85 | public: |
| 86 | std::shared_ptr<Label> _label; |
nothing calls this directly
no outgoing calls
no test coverage detected