文件最后提交记录最后更新时间
Ensure Example Packages Work on Android API 36 (#9241) Ensured the example plugin apps on Android work on Android API 36 by updating configurations and sucessfully running flutter build apk (means the app can successfully build + all dependencies are resolvable). For compatibility with Android API 36, the example plugin apps on Android should have the following configurations: targetSdk: 36 compileSdk: 36 AGP version: 8.9.1 Gradle version: 8.11.1 Most packages no longer require a manual bump of targetSdk and compileSdk due to usage of values from Flutter Gradle Plugin. Below is a list of example plugin apps on Android: Partially Adresses https://github.com/flutter/flutter/issues/163071 ## Pre-Review Checklist [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.1 年前
[various] Migrate example apps' AppDelegate.swift (#8155) Migrated by running: ``` dart run script/tool/bin/flutter_plugin_tools.dart build-examples --ios --swift-package-manager dart run script/tool/bin/flutter_plugin_tools.dart build-examples --macos --swift-package-manager ``` Tests aren't updated as this change should not affect semantics. I will get a test exemption. Part of https://github.com/flutter/flutter/issues/1591731 年前
[two_dimensional_scrollables] Enable multi-cell/single-cell text selection in Simple Table example (#8189) This change adds a SegmentedButton to enable different variations of text selection for the example. * Multi-cell selection, enables selection across the entire table, allowing you to select across cells. * Single-cell selection, enables selection on individual cells, so the selection cannot escape the cell it started in. * Disabled, disables selection across the entire table. Text selection in a table is a common use-case that we should showcase.11 个月前
[two_dimensional_scrollables] TableView (#4536) Design doc: [flutter.dev/go/table-view](https://docs.google.com/document/d/15ecTZE1g3WeswLGFWrnEgMP6SyL6jDRdxOgPsczOcV0/edit?usp=sharing&resourcekey=0-yNd_qFhiPjz6z2TgezWc0A) Fixes https://github.com/flutter/flutter/issues/87370 Fixes https://github.com/flutter/flutter/issues/30770 This adds a new package: two_dimensional_scrollables - a package for widgets that scroll in two dimensions. The first widget in the collection here is TableView. https://github.com/flutter/packages/assets/16964204/8103001a-77dc-489f-9e75-278972f66f30 TableView is built on top of the 2D scrolling foundation that lives in the Flutter framework. Other widgets that will be included in this package in the future are TreeView and TreeTableView.2 年前
[various] Migrate example apps' AppDelegate.swift (#8155) Migrated by running: ``` dart run script/tool/bin/flutter_plugin_tools.dart build-examples --ios --swift-package-manager dart run script/tool/bin/flutter_plugin_tools.dart build-examples --macos --swift-package-manager ``` Tests aren't updated as this change should not affect semantics. I will get a test exemption. Part of https://github.com/flutter/flutter/issues/1591731 年前
[two_dimensional_scrollables] Enable multi-cell/single-cell text selection in Simple Table example (#8189) This change adds a SegmentedButton to enable different variations of text selection for the example. * Multi-cell selection, enables selection across the entire table, allowing you to select across cells. * Single-cell selection, enables selection on individual cells, so the selection cannot escape the cell it started in. * Disabled, disables selection across the entire table. Text selection in a table is a common use-case that we should showcase.11 个月前
Drop deprecated HTML head meta tags (#8970) Towards https://github.com/flutter/flutter/issues/1661661 年前
[various] Commit Windows build migrations (#6175) Commits the changes caused by building all examples for Windows with a recent version of Flutter, to minimize noise in CI logs and local builds. All changes are entirely tool-generated.2 年前
[various] Update example apps' .gitignore (#8156) Migrated by running: ``` dart run script/tool/bin/flutter_plugin_tools.dart build-examples --ios --swift-package-manager dart run script/tool/bin/flutter_plugin_tools.dart build-examples --macos --swift-package-manager ``` No test changes as this is a configuration change. I will get a test exemption. Part of https://github.com/flutter/flutter/issues/1591731 年前
[two_dimensional_scrollables] TableView (#4536) Design doc: [flutter.dev/go/table-view](https://docs.google.com/document/d/15ecTZE1g3WeswLGFWrnEgMP6SyL6jDRdxOgPsczOcV0/edit?usp=sharing&resourcekey=0-yNd_qFhiPjz6z2TgezWc0A) Fixes https://github.com/flutter/flutter/issues/87370 Fixes https://github.com/flutter/flutter/issues/30770 This adds a new package: two_dimensional_scrollables - a package for widgets that scroll in two dimensions. The first widget in the collection here is TableView. https://github.com/flutter/packages/assets/16964204/8103001a-77dc-489f-9e75-278972f66f30 TableView is built on top of the 2D scrolling foundation that lives in the Flutter framework. Other widgets that will be included in this package in the future are TreeView and TreeTableView.2 年前
[two_dimensional_scrollables] TreeView (#6592) 2 年前
[two_dimensional_scrollables] TreeView (#6592) 2 年前
Update repo for 3.32 stable (#9311) Does all of the steps from https://github.com/flutter/flutter/blob/master/docs/ecosystem/release/Updating-Packages-repo-for-a-stable-release.md for the 3.32 stable release (except the first one, as the stable roller has already landed).1 年前
README.md

TableView and TreeView Examples

A sample application that utilizes the TableView and TreeView APIs.