flutter/dev/a11y_assessments
Yegor fe07fb4eba
fix heading level absorption, diagnostics; add tests and an a11y use-case (#151421)
Multiple fixes related to heading levels:

* Fix heading level absorption. Heading level would get erased when a semantics config is absorbed into another. With this change the highest heading level wins.
* Add `headingLevel` to the diagnostics of `SemanticsNode`.
* Add unit-tests for heading levels.
* Add an a11y use-case for headings.

Improves https://github.com/flutter/flutter/issues/46789 and general accessibility of headings.
2024-07-10 05:11:38 +00:00
..
android Manual engine roll to ddd4814 (#150952) 2024-06-27 21:57:32 +00:00
ios [iOS] Migrate @UIApplicationMain attribute to @main (#146707) 2024-04-16 22:13:03 +00:00
lib Add high-contrast theme (#149779) 2024-06-11 00:31:08 +00:00
linux Adds a11y assessment sample app (#131716) 2023-08-03 16:15:14 +00:00
macos [macOS] Migrate @NSApplicationMain attribute to @main (#146848) 2024-04-18 03:08:36 +00:00
test Add high-contrast theme (#149779) 2024-06-11 00:31:08 +00:00
web fix heading level absorption, diagnostics; add tests and an a11y use-case (#151421) 2024-07-10 05:11:38 +00:00
windows [Windows] Drop support for Windows 7/8 apps in template (#146668) 2024-04-12 01:07:20 +00:00
.gitignore Adds a11y assessment sample app (#131716) 2023-08-03 16:15:14 +00:00
.metadata Adds a11y assessment sample app (#131716) 2023-08-03 16:15:14 +00:00
analysis_options.yaml Adds a11y assessment sample app (#131716) 2023-08-03 16:15:14 +00:00
pubspec.yaml Roll pub packages (#151492) 2024-07-09 22:47:35 +00:00
README.md Bump new release for a11y_assessment (#150213) 2024-06-13 20:27:23 +00:00

a11y_assessments

This app is used for internal testing.

Release a new version for Android

pre-requisite: This can and should only be done by a googler and you must also be in the flutter.dev play console account.

  1. Follow https://docs.flutter.dev/deployment/android to create a keystore file if you don't already have one.

  2. Bump the pubspec.yaml version

  3. Create a key.properties file in android/ directory following this format.

storePassword=<password>
keyPassword=<password>
keyAlias=upload
storeFile=<keystore path>
  1. Run flutter build appbundle and upload the artifact to play console

Release a new version for iOS

pre-requisite: This can and should only be done by a googler and you must also be in the FLUTTER.IO LLC developer account with iOS distribution permission.

  1. Bump the pubspec.yaml version
  2. Run flutter build ipa and upload the artifact to app store using transporter or other tools. For more information, see https://docs.flutter.dev/deployment/ios.
  3. Once the app is in TestFlight, add appropriate testers to the app so they can start testing.