├── .circleci └── config.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── boxy ├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example │ ├── .gitignore │ ├── .metadata │ ├── LICENSE │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── pxtst │ │ │ │ │ │ └── boxy │ │ │ │ │ │ └── gallery │ │ │ │ │ │ └── example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── 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 │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── components │ │ │ └── palette.dart │ │ ├── main.dart │ │ └── pages │ │ │ ├── blog_tile.dart │ │ │ ├── boxy_row.dart │ │ │ ├── line_numbers.dart │ │ │ ├── product_tile.dart │ │ │ ├── product_tile_simple.dart │ │ │ ├── sliver_container.dart │ │ │ └── tree_view.dart │ ├── pubspec.yaml │ ├── web │ │ ├── favicon.png │ │ ├── icons │ │ │ ├── Icon-192.png │ │ │ ├── Icon-512.png │ │ │ ├── Icon-maskable-192.png │ │ │ └── Icon-maskable-512.png │ │ ├── index.html │ │ └── manifest.json │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h ├── lib │ ├── boxy.dart │ ├── flex.dart │ ├── inflating_element.dart │ ├── padding.dart │ ├── redirect_pointer.dart │ ├── render_boxy.dart │ ├── scale.dart │ ├── slivers.dart │ ├── src │ │ ├── axis_utils.dart │ │ ├── boxy │ │ │ ├── box_child.dart │ │ │ ├── box_delegate.dart │ │ │ ├── custom_boxy.dart │ │ │ ├── custom_boxy_base.dart │ │ │ ├── inflating_element.dart │ │ │ ├── sliver_child.dart │ │ │ └── sliver_delegate.dart │ │ ├── boxy_flex.dart │ │ ├── overflow_padding.dart │ │ ├── redirect_pointer.dart │ │ ├── scale.dart │ │ ├── sliver_axis_utils.dart │ │ ├── sliver_card.dart │ │ ├── sliver_container.dart │ │ ├── sliver_offset.dart │ │ └── slotted_render_object_widget.dart │ └── utils.dart ├── pubspec.yaml └── test │ ├── boxy_intrinsics_test.dart │ ├── boxy_pointer_test.dart │ ├── boxy_sliver_test.dart │ ├── boxy_state_test.dart │ ├── build_scope_test.dart │ ├── common.dart │ ├── dry_layout_test.dart │ ├── flex_test.dart │ ├── layers_test.dart │ ├── parent_data_test.dart │ ├── redirect_pointer_test.dart │ ├── simple_column_test.dart │ ├── simple_inflation_test.dart │ ├── sliver_container_test.dart │ └── transform_test.dart └── website ├── .gitignore ├── README.md ├── SUMMARY.md ├── deploy.sh ├── docs ├── assets │ └── beeper.png ├── banner.png ├── custom-boxy │ ├── boxy-child.md │ ├── boxy-id.md │ ├── examples │ │ ├── evenly-sized-row.md │ │ ├── ftest_2ETeGIqwH8.png │ │ ├── ftest_4KetSQxXfe.png │ │ ├── ftest_7Je17IzRnr.png │ │ ├── ftest_GCKLEFXEnu.png │ │ ├── ftest_MyQB0wRzDZ.png │ │ ├── ftest_UHm3QStdY7.png │ │ ├── ftest_UTDKLOvcAU.png │ │ ├── ftest_X0YPu1QG3P.png │ │ ├── ftest_pqqiRVzZwz.png │ │ ├── image (1) (1) (1).png │ │ ├── product-tile.md │ │ ├── simplified_tree_view.png │ │ ├── square-layout.md │ │ └── tree-view.md │ ├── ftest_XBEjnnpsdS.png │ ├── ftest_fcR5Z2lEZD.png │ ├── ftest_frMkXTvID9.png │ ├── ftest_m3xCKjHuvM.png │ ├── hello-world.md │ ├── image (1) (1) (1) (1) (1) (1).png │ ├── image (1) (1) (1) (1) (1).png │ ├── image (1) (1) (1) (1).png │ ├── image (1).png │ ├── image (3).png │ ├── introduction-to-customboxy.md │ ├── layers.md │ ├── painting.md │ └── widget-inflation.md ├── helpers │ ├── cross-axis-alignment.md │ ├── dominant.md │ ├── ftest_IKQC577sJP.png │ ├── ftest_jInY0aelEY.png │ ├── ftest_nmZYWRSqsy (1).png │ ├── ftest_yiTCTxZ1s9.png │ ├── image (1) (1).png │ ├── image.png │ ├── sliver-card.md │ └── sliver-container.md ├── index.md ├── primer │ ├── box-constraints.md │ ├── image (2).png │ ├── interactive-example.md │ ├── introduction-to-layout.md │ ├── learn-more.md │ ├── the-many-trees.md │ └── trees.png └── stylesheets │ ├── boxy.css │ └── extra.css ├── mkdocs.yml └── overrides └── partials ├── comments.html └── tabs-item.html /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | boxy/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | boxy/README.md -------------------------------------------------------------------------------- /boxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/.gitignore -------------------------------------------------------------------------------- /boxy/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/.metadata -------------------------------------------------------------------------------- /boxy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/CHANGELOG.md -------------------------------------------------------------------------------- /boxy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/LICENSE -------------------------------------------------------------------------------- /boxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/README.md -------------------------------------------------------------------------------- /boxy/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/analysis_options.yaml -------------------------------------------------------------------------------- /boxy/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/.gitignore -------------------------------------------------------------------------------- /boxy/example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/.metadata -------------------------------------------------------------------------------- /boxy/example/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/LICENSE -------------------------------------------------------------------------------- /boxy/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/README.md -------------------------------------------------------------------------------- /boxy/example/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/analysis_options.yaml -------------------------------------------------------------------------------- /boxy/example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/.gitignore -------------------------------------------------------------------------------- /boxy/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/build.gradle -------------------------------------------------------------------------------- /boxy/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/kotlin/com/pxtst/boxy/gallery/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/kotlin/com/pxtst/boxy/gallery/example/MainActivity.kt -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /boxy/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /boxy/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /boxy/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/build.gradle -------------------------------------------------------------------------------- /boxy/example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/gradle.properties -------------------------------------------------------------------------------- /boxy/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /boxy/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/android/settings.gradle -------------------------------------------------------------------------------- /boxy/example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/.gitignore -------------------------------------------------------------------------------- /boxy/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /boxy/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /boxy/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /boxy/example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /boxy/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /boxy/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /boxy/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /boxy/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /boxy/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /boxy/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /boxy/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /boxy/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /boxy/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /boxy/example/lib/components/palette.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/lib/components/palette.dart -------------------------------------------------------------------------------- /boxy/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/lib/main.dart -------------------------------------------------------------------------------- /boxy/example/lib/pages/blog_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/lib/pages/blog_tile.dart -------------------------------------------------------------------------------- /boxy/example/lib/pages/boxy_row.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/lib/pages/boxy_row.dart -------------------------------------------------------------------------------- /boxy/example/lib/pages/line_numbers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/lib/pages/line_numbers.dart -------------------------------------------------------------------------------- /boxy/example/lib/pages/product_tile.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/lib/pages/product_tile.dart -------------------------------------------------------------------------------- /boxy/example/lib/pages/product_tile_simple.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/lib/pages/product_tile_simple.dart -------------------------------------------------------------------------------- /boxy/example/lib/pages/sliver_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/lib/pages/sliver_container.dart -------------------------------------------------------------------------------- /boxy/example/lib/pages/tree_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/lib/pages/tree_view.dart -------------------------------------------------------------------------------- /boxy/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/pubspec.yaml -------------------------------------------------------------------------------- /boxy/example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/web/favicon.png -------------------------------------------------------------------------------- /boxy/example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /boxy/example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /boxy/example/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /boxy/example/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /boxy/example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/web/index.html -------------------------------------------------------------------------------- /boxy/example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/web/manifest.json -------------------------------------------------------------------------------- /boxy/example/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/.gitignore -------------------------------------------------------------------------------- /boxy/example/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/CMakeLists.txt -------------------------------------------------------------------------------- /boxy/example/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /boxy/example/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /boxy/example/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /boxy/example/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /boxy/example/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /boxy/example/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/Runner.rc -------------------------------------------------------------------------------- /boxy/example/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /boxy/example/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /boxy/example/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/main.cpp -------------------------------------------------------------------------------- /boxy/example/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/resource.h -------------------------------------------------------------------------------- /boxy/example/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /boxy/example/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /boxy/example/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/utils.cpp -------------------------------------------------------------------------------- /boxy/example/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/utils.h -------------------------------------------------------------------------------- /boxy/example/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /boxy/example/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/example/windows/runner/win32_window.h -------------------------------------------------------------------------------- /boxy/lib/boxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/boxy.dart -------------------------------------------------------------------------------- /boxy/lib/flex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/flex.dart -------------------------------------------------------------------------------- /boxy/lib/inflating_element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/inflating_element.dart -------------------------------------------------------------------------------- /boxy/lib/padding.dart: -------------------------------------------------------------------------------- 1 | export 'src/overflow_padding.dart'; 2 | -------------------------------------------------------------------------------- /boxy/lib/redirect_pointer.dart: -------------------------------------------------------------------------------- 1 | export 'src/redirect_pointer.dart'; 2 | -------------------------------------------------------------------------------- /boxy/lib/render_boxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/render_boxy.dart -------------------------------------------------------------------------------- /boxy/lib/scale.dart: -------------------------------------------------------------------------------- 1 | export 'src/scale.dart'; 2 | -------------------------------------------------------------------------------- /boxy/lib/slivers.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/slivers.dart -------------------------------------------------------------------------------- /boxy/lib/src/axis_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/axis_utils.dart -------------------------------------------------------------------------------- /boxy/lib/src/boxy/box_child.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/boxy/box_child.dart -------------------------------------------------------------------------------- /boxy/lib/src/boxy/box_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/boxy/box_delegate.dart -------------------------------------------------------------------------------- /boxy/lib/src/boxy/custom_boxy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/boxy/custom_boxy.dart -------------------------------------------------------------------------------- /boxy/lib/src/boxy/custom_boxy_base.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/boxy/custom_boxy_base.dart -------------------------------------------------------------------------------- /boxy/lib/src/boxy/inflating_element.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/boxy/inflating_element.dart -------------------------------------------------------------------------------- /boxy/lib/src/boxy/sliver_child.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/boxy/sliver_child.dart -------------------------------------------------------------------------------- /boxy/lib/src/boxy/sliver_delegate.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/boxy/sliver_delegate.dart -------------------------------------------------------------------------------- /boxy/lib/src/boxy_flex.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/boxy_flex.dart -------------------------------------------------------------------------------- /boxy/lib/src/overflow_padding.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/overflow_padding.dart -------------------------------------------------------------------------------- /boxy/lib/src/redirect_pointer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/redirect_pointer.dart -------------------------------------------------------------------------------- /boxy/lib/src/scale.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/scale.dart -------------------------------------------------------------------------------- /boxy/lib/src/sliver_axis_utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/sliver_axis_utils.dart -------------------------------------------------------------------------------- /boxy/lib/src/sliver_card.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/sliver_card.dart -------------------------------------------------------------------------------- /boxy/lib/src/sliver_container.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/sliver_container.dart -------------------------------------------------------------------------------- /boxy/lib/src/sliver_offset.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/sliver_offset.dart -------------------------------------------------------------------------------- /boxy/lib/src/slotted_render_object_widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/src/slotted_render_object_widget.dart -------------------------------------------------------------------------------- /boxy/lib/utils.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/lib/utils.dart -------------------------------------------------------------------------------- /boxy/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/pubspec.yaml -------------------------------------------------------------------------------- /boxy/test/boxy_intrinsics_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/boxy_intrinsics_test.dart -------------------------------------------------------------------------------- /boxy/test/boxy_pointer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/boxy_pointer_test.dart -------------------------------------------------------------------------------- /boxy/test/boxy_sliver_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/boxy_sliver_test.dart -------------------------------------------------------------------------------- /boxy/test/boxy_state_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/boxy_state_test.dart -------------------------------------------------------------------------------- /boxy/test/build_scope_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/build_scope_test.dart -------------------------------------------------------------------------------- /boxy/test/common.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/common.dart -------------------------------------------------------------------------------- /boxy/test/dry_layout_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/dry_layout_test.dart -------------------------------------------------------------------------------- /boxy/test/flex_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/flex_test.dart -------------------------------------------------------------------------------- /boxy/test/layers_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/layers_test.dart -------------------------------------------------------------------------------- /boxy/test/parent_data_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/parent_data_test.dart -------------------------------------------------------------------------------- /boxy/test/redirect_pointer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/redirect_pointer_test.dart -------------------------------------------------------------------------------- /boxy/test/simple_column_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/simple_column_test.dart -------------------------------------------------------------------------------- /boxy/test/simple_inflation_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/simple_inflation_test.dart -------------------------------------------------------------------------------- /boxy/test/sliver_container_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/sliver_container_test.dart -------------------------------------------------------------------------------- /boxy/test/transform_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/boxy/test/transform_test.dart -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- 1 | /site/ 2 | -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/README.md -------------------------------------------------------------------------------- /website/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/SUMMARY.md -------------------------------------------------------------------------------- /website/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/deploy.sh -------------------------------------------------------------------------------- /website/docs/assets/beeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/assets/beeper.png -------------------------------------------------------------------------------- /website/docs/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/banner.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/boxy-child.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/boxy-child.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/boxy-id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/boxy-id.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/evenly-sized-row.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/evenly-sized-row.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/ftest_2ETeGIqwH8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/ftest_2ETeGIqwH8.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/ftest_4KetSQxXfe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/ftest_4KetSQxXfe.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/ftest_7Je17IzRnr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/ftest_7Je17IzRnr.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/ftest_GCKLEFXEnu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/ftest_GCKLEFXEnu.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/ftest_MyQB0wRzDZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/ftest_MyQB0wRzDZ.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/ftest_UHm3QStdY7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/ftest_UHm3QStdY7.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/ftest_UTDKLOvcAU.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/ftest_UTDKLOvcAU.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/ftest_X0YPu1QG3P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/ftest_X0YPu1QG3P.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/ftest_pqqiRVzZwz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/ftest_pqqiRVzZwz.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/image (1) (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/image (1) (1) (1).png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/product-tile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/product-tile.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/simplified_tree_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/simplified_tree_view.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/square-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/square-layout.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/examples/tree-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/examples/tree-view.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/ftest_XBEjnnpsdS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/ftest_XBEjnnpsdS.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/ftest_fcR5Z2lEZD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/ftest_fcR5Z2lEZD.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/ftest_frMkXTvID9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/ftest_frMkXTvID9.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/ftest_m3xCKjHuvM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/ftest_m3xCKjHuvM.png -------------------------------------------------------------------------------- /website/docs/custom-boxy/hello-world.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/hello-world.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/image (1) (1) (1) (1) (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/image (1) (1) (1) (1) (1) (1).png -------------------------------------------------------------------------------- /website/docs/custom-boxy/image (1) (1) (1) (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/image (1) (1) (1) (1) (1).png -------------------------------------------------------------------------------- /website/docs/custom-boxy/image (1) (1) (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/image (1) (1) (1) (1).png -------------------------------------------------------------------------------- /website/docs/custom-boxy/image (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/image (1).png -------------------------------------------------------------------------------- /website/docs/custom-boxy/image (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/image (3).png -------------------------------------------------------------------------------- /website/docs/custom-boxy/introduction-to-customboxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/introduction-to-customboxy.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/layers.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/painting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/painting.md -------------------------------------------------------------------------------- /website/docs/custom-boxy/widget-inflation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/custom-boxy/widget-inflation.md -------------------------------------------------------------------------------- /website/docs/helpers/cross-axis-alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/cross-axis-alignment.md -------------------------------------------------------------------------------- /website/docs/helpers/dominant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/dominant.md -------------------------------------------------------------------------------- /website/docs/helpers/ftest_IKQC577sJP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/ftest_IKQC577sJP.png -------------------------------------------------------------------------------- /website/docs/helpers/ftest_jInY0aelEY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/ftest_jInY0aelEY.png -------------------------------------------------------------------------------- /website/docs/helpers/ftest_nmZYWRSqsy (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/ftest_nmZYWRSqsy (1).png -------------------------------------------------------------------------------- /website/docs/helpers/ftest_yiTCTxZ1s9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/ftest_yiTCTxZ1s9.png -------------------------------------------------------------------------------- /website/docs/helpers/image (1) (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/image (1) (1).png -------------------------------------------------------------------------------- /website/docs/helpers/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/image.png -------------------------------------------------------------------------------- /website/docs/helpers/sliver-card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/sliver-card.md -------------------------------------------------------------------------------- /website/docs/helpers/sliver-container.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/helpers/sliver-container.md -------------------------------------------------------------------------------- /website/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/index.md -------------------------------------------------------------------------------- /website/docs/primer/box-constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/primer/box-constraints.md -------------------------------------------------------------------------------- /website/docs/primer/image (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/primer/image (2).png -------------------------------------------------------------------------------- /website/docs/primer/interactive-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/primer/interactive-example.md -------------------------------------------------------------------------------- /website/docs/primer/introduction-to-layout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/primer/introduction-to-layout.md -------------------------------------------------------------------------------- /website/docs/primer/learn-more.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/primer/learn-more.md -------------------------------------------------------------------------------- /website/docs/primer/the-many-trees.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/primer/the-many-trees.md -------------------------------------------------------------------------------- /website/docs/primer/trees.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/primer/trees.png -------------------------------------------------------------------------------- /website/docs/stylesheets/boxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/stylesheets/boxy.css -------------------------------------------------------------------------------- /website/docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /website/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/mkdocs.yml -------------------------------------------------------------------------------- /website/overrides/partials/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/overrides/partials/comments.html -------------------------------------------------------------------------------- /website/overrides/partials/tabs-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pingbird/boxy/HEAD/website/overrides/partials/tabs-item.html --------------------------------------------------------------------------------