| 39 | } |
| 40 | |
| 41 | std::vector<std::shared_ptr<View>> NavigationViewCore::childViews() const |
| 42 | { |
| 43 | if (!_stack.empty()) { |
| 44 | return {_stack.back().container}; |
| 45 | } |
| 46 | return {}; |
| 47 | } |
| 48 | |
| 49 | void NavigationViewCore::visitInternalChildren(const std::function<void(std::shared_ptr<View::Core>)> &function) |
| 50 | { |