gitextract_6dhq12ku/ ├── .github/ │ └── workflows/ │ └── flutter-test.yml ├── .gitignore ├── .metadata ├── .vscode/ │ └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example/ │ ├── .gitignore │ ├── .metadata │ ├── analysis_options.yaml │ ├── lib/ │ │ ├── app_layout.dart │ │ ├── basic.dart │ │ ├── drag_and_drop_example.dart │ │ ├── flutter_layout_grid_example.dart │ │ ├── overlapping_items.dart │ │ ├── periodic_table.dart │ │ ├── periodic_table_data.json │ │ ├── responsive_app_layout.dart │ │ ├── scrabble.dart │ │ ├── semantic_ordering.dart │ │ └── support/ │ │ └── inner_shadow.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 │ │ ├── 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/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── Runner.xcscheme │ │ └── Runner.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── pubspec.yaml ├── lib/ │ ├── flutter_layout_grid.dart │ └── src/ │ ├── foundation/ │ │ ├── box.dart │ │ ├── collections.dart │ │ └── placement.dart │ ├── helpers.dart │ ├── rendering/ │ │ ├── debug.dart │ │ ├── layout_grid.dart │ │ ├── placement.dart │ │ └── track_size.dart │ └── widgets/ │ ├── layout_grid.dart │ └── placement.dart ├── pubspec.yaml ├── test/ │ ├── accessibility_test.dart │ ├── areas_parsing_test.dart │ ├── ensure_debug_flags_off_test.dart │ ├── golden_test.dart │ ├── grid_sizing_test.dart │ ├── invalidation_test.dart │ ├── placement_test.dart │ ├── test_helpers.dart │ └── track_size_test.dart └── tool/ └── ci_test.sh