gitextract_i0cj6x04/ ├── .github/ │ └── workflows/ │ └── main.yml ├── .gitignore ├── .metadata ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── analysis_options.yaml ├── android/ │ ├── .gitignore │ ├── app/ │ │ ├── build.gradle │ │ └── src/ │ │ ├── debug/ │ │ │ └── AndroidManifest.xml │ │ ├── main/ │ │ │ ├── AndroidManifest.xml │ │ │ ├── kotlin/ │ │ │ │ └── com/ │ │ │ │ └── github/ │ │ │ │ └── wgh136/ │ │ │ │ └── pixes/ │ │ │ │ └── MainActivity.kt │ │ │ └── res/ │ │ │ ├── drawable/ │ │ │ │ └── launch_background.xml │ │ │ ├── drawable-v21/ │ │ │ │ └── launch_background.xml │ │ │ ├── mipmap-anydpi-v26/ │ │ │ │ └── ic_launcher.xml │ │ │ ├── values/ │ │ │ │ └── styles.xml │ │ │ └── values-night/ │ │ │ └── styles.xml │ │ └── profile/ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle/ │ │ └── wrapper/ │ │ └── gradle-wrapper.properties │ ├── gradle.properties │ └── settings.gradle ├── assets/ │ └── tr.json ├── debian/ │ ├── build.py │ ├── debian.yaml │ └── gui/ │ └── pixes.desktop ├── ios/ │ ├── .gitignore │ ├── Flutter/ │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Podfile │ ├── Runner/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.imageset/ │ │ │ ├── Contents.json │ │ │ └── README.md │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── Runner-Bridging-Header.h │ ├── Runner.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── RunnerTests/ │ └── RunnerTests.swift ├── lib/ │ ├── appdata.dart │ ├── components/ │ │ ├── animated_image.dart │ │ ├── batch_download.dart │ │ ├── button.dart │ │ ├── grid.dart │ │ ├── illust_widget.dart │ │ ├── keyboard.dart │ │ ├── loading.dart │ │ ├── md.dart │ │ ├── message.dart │ │ ├── novel.dart │ │ ├── page_route.dart │ │ ├── search_field.dart │ │ ├── segmented_button.dart │ │ ├── title_bar.dart │ │ ├── ugoira.dart │ │ └── user_preview.dart │ ├── foundation/ │ │ ├── app.dart │ │ ├── cache_manager.dart │ │ ├── history.dart │ │ ├── image_provider.dart │ │ ├── log.dart │ │ ├── navigation.dart │ │ ├── pair.dart │ │ ├── state_controller.dart │ │ └── widget_utils.dart │ ├── main.dart │ ├── network/ │ │ ├── app_dio.dart │ │ ├── download.dart │ │ ├── models.dart │ │ ├── network.dart │ │ ├── novel.dart │ │ ├── res.dart │ │ └── translator.dart │ ├── pages/ │ │ ├── bookmarks.dart │ │ ├── comments_page.dart │ │ ├── downloaded_page.dart │ │ ├── downloading_page.dart │ │ ├── following_artworks.dart │ │ ├── following_novels_page.dart │ │ ├── following_users_page.dart │ │ ├── history.dart │ │ ├── illust_page.dart │ │ ├── image_page.dart │ │ ├── login_page.dart │ │ ├── logs.dart │ │ ├── main_page.dart │ │ ├── novel_bookmarks_page.dart │ │ ├── novel_page.dart │ │ ├── novel_ranking_page.dart │ │ ├── novel_reading_page.dart │ │ ├── novel_recommendation_page.dart │ │ ├── ranking.dart │ │ ├── recommendation_page.dart │ │ ├── related_page.dart │ │ ├── search_page.dart │ │ ├── settings_page.dart │ │ ├── user_info_page.dart │ │ └── webview_page.dart │ └── utils/ │ ├── app_links.dart │ ├── block.dart │ ├── debounce.dart │ ├── debug.dart │ ├── ext.dart │ ├── io.dart │ ├── loop.dart │ ├── mouse_listener.dart │ ├── translation.dart │ ├── update.dart │ └── window.dart ├── linux/ │ ├── .gitignore │ ├── CMakeLists.txt │ ├── flutter/ │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ ├── main.cc │ ├── my_application.cc │ └── my_application.h ├── macos/ │ ├── .gitignore │ ├── Flutter/ │ │ ├── Flutter-Debug.xcconfig │ │ ├── Flutter-Release.xcconfig │ │ └── GeneratedPluginRegistrant.swift │ ├── Podfile │ ├── Runner/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── MainMenu.xib │ │ ├── Configs/ │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ ├── DebugProfile.entitlements │ │ ├── Info.plist │ │ ├── MainFlutterWindow.swift │ │ └── Release.entitlements │ ├── Runner.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── RunnerTests/ │ └── RunnerTests.swift ├── pubspec.yaml ├── test/ │ └── widget_test.dart └── windows/ ├── .gitignore ├── CMakeLists.txt ├── build.iss ├── build.py ├── flutter/ │ ├── CMakeLists.txt │ ├── generated_plugin_registrant.cc │ ├── generated_plugin_registrant.h │ └── generated_plugins.cmake └── runner/ ├── CMakeLists.txt ├── RCa14464 ├── RCa18972 ├── Runner.aps ├── Runner.rc ├── flutter_window.cpp ├── flutter_window.h ├── main.cpp ├── resource.h ├── runner.exe.manifest ├── utils.cpp ├── utils.h ├── win32_window.cpp └── win32_window.h