flutter/dev/a11y_assessments
Joy Serquiña 85b3d97673
fix(flutter/a11y assessments): h1 missing a11y from each page on the web app (#152198)
Adds Semantic Widget to wrap the contents of each page's AppBar title attribute and adds header: true and headingLevel: 1 as Semantic attributes so the content of the title is compiled as an h1 tag to meet accessibility guidelines that each page must have a h1 tag present. Also updates the test cases for the home page and each use case page to check for its respective h1.

[Before Screenshot - Accessibility Assessments Home Page](https://screenshot.googleplex.com/4i9LuiGwvLnEcZ8)
[Before Screenshot - Checkbox List Title -- note: each use case page is missing an h1](https://screenshot.googleplex.com/3qQjfqvAMTehRsm)
[After Screenshot - Accessibility Assessments Home Page](https://screenshot.googleplex.com/APSJJXBmwNBP35m)
[After Screenshot - Checkbox List Title-- note: change is similar across each Accessibility use case page](https://screenshot.googleplex.com/6EGgZnTusEgeN5L)

Fixes b/338035526
2024-08-13 22:22:28 +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 fix(flutter/a11y assessments): h1 missing a11y from each page on the web app (#152198) 2024-08-13 22:22:28 +00:00
linux Adds a11y assessment sample app (#131716) 2023-08-03 16:15:14 +00:00
macos [macOS] support secure restorable state by default (#151605) 2024-07-12 11:08:26 -07:00
test fix(flutter/a11y assessments): h1 missing a11y from each page on the web app (#152198) 2024-08-13 22:22:28 +00:00
web fix(Flutter Web App): fixes html lang typo (#151866) 2024-07-17 17:58:53 +00:00
windows [Windows] Drop support for Windows 7/8 apps in template (#146668) 2024-04-12 01:07:20 +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 Manual dependency bump (#152881) 2024-08-06 02:40:27 +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.