├── .github └── FUNDING.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Sources ├── HydrogenReporter │ └── Logger.swift └── HydrogenUI │ ├── Backbone │ ├── Config.swift │ ├── DebugHandler.swift │ ├── Debuggable.swift │ ├── Extensions │ │ └── UIApplication+MainScene.swift │ └── UIDevice.swift │ ├── SampleView.swift │ └── Views │ ├── HydrogenReporter │ ├── Child Views │ │ └── RowView.swift │ ├── Console.swift │ ├── DebugView.swift │ ├── LoggerView.swift │ ├── MirrorView.swift │ └── StatisticsView.swift │ └── Modifiers │ ├── HydrogenModifiers.swift │ └── RoundedBorder.swift ├── Tests └── HydrogenReporterTests │ └── HydrogenReporterTests.swift └── assets ├── debugConsole.png ├── icon.png ├── inspector.jpeg ├── logger.png └── statistics.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/README.md -------------------------------------------------------------------------------- /Sources/HydrogenReporter/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenReporter/Logger.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Backbone/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Backbone/Config.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Backbone/DebugHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Backbone/DebugHandler.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Backbone/Debuggable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Backbone/Debuggable.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Backbone/Extensions/UIApplication+MainScene.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Backbone/Extensions/UIApplication+MainScene.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Backbone/UIDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Backbone/UIDevice.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/SampleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/SampleView.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Views/HydrogenReporter/Child Views/RowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Views/HydrogenReporter/Child Views/RowView.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Views/HydrogenReporter/Console.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Views/HydrogenReporter/Console.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Views/HydrogenReporter/DebugView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Views/HydrogenReporter/DebugView.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Views/HydrogenReporter/LoggerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Views/HydrogenReporter/LoggerView.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Views/HydrogenReporter/MirrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Views/HydrogenReporter/MirrorView.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Views/HydrogenReporter/StatisticsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Views/HydrogenReporter/StatisticsView.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Views/Modifiers/HydrogenModifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Views/Modifiers/HydrogenModifiers.swift -------------------------------------------------------------------------------- /Sources/HydrogenUI/Views/Modifiers/RoundedBorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Sources/HydrogenUI/Views/Modifiers/RoundedBorder.swift -------------------------------------------------------------------------------- /Tests/HydrogenReporterTests/HydrogenReporterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/Tests/HydrogenReporterTests/HydrogenReporterTests.swift -------------------------------------------------------------------------------- /assets/debugConsole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/assets/debugConsole.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/inspector.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/assets/inspector.jpeg -------------------------------------------------------------------------------- /assets/logger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/assets/logger.png -------------------------------------------------------------------------------- /assets/statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActuallyTaylor/HydrogenReporter/HEAD/assets/statistics.png --------------------------------------------------------------------------------