text
stringlengths 6
13.6M
| id
stringlengths 13
176
| metadata
dict | __index_level_0__
int64 0
1.69k
|
---|---|---|---|
---
title: Build and release a macOS app
description: How to release a Flutter app to the macOS App Store.
short-title: macOS
---
This guide provides a step-by-step walkthrough of releasing a
Flutter app to the [App Store][appstore].
## Preliminaries
Before beginning the process of releasing your app,
ensure that it meets
Apple's [App Review Guidelines][appreview].
In order to publish your app to the App Store,
you must first enroll in the
[Apple Developer Program][devprogram].
You can read more about the various
membership options in Apple's
[Choosing a Membership][devprogram_membership] guide.
## Register your app on App Store Connect
Manage your app's life cycle on
[App Store Connect][appstoreconnect_login] (formerly iTunes Connect).
You define your app name and description, add screenshots,
set pricing, and manage releases to the App Store and TestFlight.
Registering your app involves two steps: registering a unique
Bundle ID, and creating an application record on App Store Connect.
For a detailed overview of App Store Connect, see the
[App Store Connect][appstoreconnect_guide] guide.
### Register a Bundle ID
Every macOS application is associated with a Bundle ID,
a unique identifier registered with Apple.
To register a Bundle ID for your app, follow these steps:
1. Open the [App IDs][devportal_appids] page of your developer account.
1. Click **+** to create a new Bundle ID.
1. Enter an app name, select **Explicit App ID**, and enter an ID.
1. Select the services your app uses, then click **Continue**.
1. On the next page, confirm the details and click **Register**
to register your Bundle ID.
### Create an application record on App Store Connect
Register your app on App Store Connect:
1. Open [App Store Connect][appstoreconnect_login] in your browser.
1. On the App Store Connect landing page, click **My Apps**.
1. Click **+** in the top-left corner of the My Apps page,
then select **New App**.
1. Fill in your app details in the form that appears.
In the Platforms section, ensure that macOS is checked.
Since Flutter does not currently support tvOS,
leave that checkbox unchecked. Click **Create**.
1. Navigate to the application details for your app and select
**App Information** from the sidebar.
1. In the General Information section, select the Bundle ID
you registered in the preceding step.
For a detailed overview,
see [Add an app to your account][appstoreconnect_guide_register].
## Review Xcode project settings
This step covers reviewing the most important settings
in the Xcode workspace.
For detailed procedures and descriptions, see
[Prepare for app distribution][distributionguide_config].
Navigate to your target's settings in Xcode:
1. In Xcode, open `Runner.xcworkspace` in your app's `macos` folder.
1. To view your app's settings, select the **Runner** project in the Xcode
project navigator. Then, in the main view sidebar, select the **Runner**
target.
1. Select the **General** tab.
Verify the most important settings.
In the **Identity** section:
`App Category`
: The app category under which your app will be listed on the Mac App Store. This cannot be none.
`Bundle Identifier`
: The App ID you registered on App Store Connect.
In the **Deployment info** section:
`Deployment Target`
: The minimum macOS version that your app supports. Flutter supports macOS 10.14 and later.
In the **Signing & Capabilities** section:
`Automatically manage signing`
: Whether Xcode should automatically manage app signing
and provisioning. This is set `true` by default, which should
be sufficient for most apps. For more complex scenarios,
see the [Code Signing Guide][codesigning_guide].
`Team`
: Select the team associated with your registered Apple Developer
account. If required, select **Add Account...**,
then update this setting.
The **General** tab of your project settings should resemble
the following:
{:width="100%"}
For a detailed overview of app signing, see
[Create, export, and delete signing certificates][appsigning].
## Configuring the app's name, bundle identifier and copyright
The configuration for the product identifiers are centralized
in `macos/Runner/Configs/AppInfo.xcconfig`. For the app's name,
set `PRODUCT_NAME`, for the copyright set `PRODUCT_COPYRIGHT`,
and finally set `PRODUCT_BUNDLE_IDENTIFIER` for the app's
bundle identifier.
## Updating the app's version number
The default version number of the app is `1.0.0`.
To update it, navigate to the `pubspec.yaml` file
and update the following line:
`version: 1.0.0+1`
The version number is three numbers separated by dots,
such as `1.0.0` in the example above, followed by an optional
build number such as `1` in the example above, separated by a `+`.
Both the version and the build number can be overridden in Flutter's
build by specifying `--build-name` and `--build-number`,
respectively.
In macOS, `build-name` uses `CFBundleShortVersionString`
while `build-number` uses `CFBundleVersion`.
Read more about iOS versioning at [Core Foundation Keys][]
on the Apple Developer's site.
## Add an app icon
When a new Flutter app is created, a placeholder icon set is created.
This step covers replacing these placeholder icons with your
app's icons:
1. Review the [macOS App Icon][appicon] guidelines.
1. In the Xcode project navigator, select `Assets.xcassets` in the
`Runner` folder. Update the placeholder icons with your own app icons.
1. Verify the icon has been replaced by running your app using
`flutter run -d macos`.
## Create a build archive with Xcode
This step covers creating a build archive and uploading
your build to App Store Connect using Xcode.
During development, you've been building, debugging, and testing
with _debug_ builds. When you're ready to ship your app to users
on the App Store or TestFlight, you need to prepare a _release_ build.
At this point, you might consider [obfuscating your Dart code][]
to make it more difficult to reverse engineer. Obfuscating
your code involves adding a couple flags to your build command.
In Xcode, configure the app version and build:
1. Open `Runner.xcworkspace` in your app's `macos` folder. To do this from
the command line, run the following command from the base directory of your
application project.
```console
open macos/Runner.xcworkspace
```
1. Select **Runner** in the Xcode project navigator, then select the
**Runner** target in the settings view sidebar.
1. In the Identity section, update the **Version** to the user-facing
version number you wish to publish.
1. In the Identity section, update the **Build** identifier to a unique
build number used to track this build on App Store Connect.
Each upload requires a unique build number.
Finally, create a build archive and upload it to App Store Connect:
1. Create a release Archive of your application. From the base directory of
your application project, run the following.
```console
flutter build macos
```
1. Open Xcode and select **Product > Archive** to open the archive created
in the previous step.
1. Click the **Validate App** button. If any issues are reported,
address them and produce another build. You can reuse the same
build ID until you upload an archive.
1. After the archive has been successfully validated, click
**Distribute App**. You can follow the status of your build in the
Activities tab of your app's details page on
[App Store Connect][appstoreconnect_login].
You should receive an email within 30 minutes notifying you that
your build has been validated and is available to release to testers
on TestFlight. At this point you can choose whether to release
on TestFlight, or go ahead and release your app to the App Store.
For more details, see
[Upload an app to App Store Connect][distributionguide_upload].
## Create a build archive with Codemagic CLI tools
This step covers creating a build archive and uploading
your build to App Store Connect using Flutter build commands
and [Codemagic CLI Tools][codemagic_cli_tools] executed in a terminal
in the Flutter project directory.
<ol markdown="1">
<li markdown="1">
Install the Codemagic CLI tools:
```bash
pip3 install codemagic-cli-tools
```
</li>
<li markdown="1">
You'll need to generate an [App Store Connect API Key][appstoreconnect_api_key]
with App Manager access to automate operations with App Store Connect. To make
subsequent commands more concise, set the following environment variables from
the new key: issuer id, key id, and API key file.
```bash
export APP_STORE_CONNECT_ISSUER_ID=aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee
export APP_STORE_CONNECT_KEY_IDENTIFIER=ABC1234567
export APP_STORE_CONNECT_PRIVATE_KEY=`cat /path/to/api/key/AuthKey_XXXYYYZZZ.p8`
```
</li>
<li markdown="1">
You need to export or create a Mac App Distribution and a Mac Installer
Distribution certificate to perform code signing and package a build archive.
If you have existing [certificates][devportal_certificates], you can export the
private keys by executing the following command for each certificate:
```bash
openssl pkcs12 -in <certificate_name>.p12 -nodes -nocerts | openssl rsa -out cert_key
```
Or you can create a new private key by executing the following command:
```bash
ssh-keygen -t rsa -b 2048 -m PEM -f cert_key -q -N ""
```
Later, you can have CLI tools automatically create a new Mac App Distribution and
Mac Installer Distribution certificate. You can use the same private key for
each new certificate.
</li>
<li markdown="1">
Fetch the code signing files from App Store Connect:
```bash
app-store-connect fetch-signing-files YOUR.APP.BUNDLE_ID \
--platform MAC_OS \
--type MAC_APP_STORE \
--certificate-key=@file:/path/to/cert_key \
--create
```
Where `cert_key` is either your exported Mac App Distribution certificate private key
or a new private key which automatically generates a new certificate.
</li>
<li markdown="1">
If you do not have a Mac Installer Distribution certificate,
you can create a new certificate by executing the following:
```bash
app-store-connect create-certificate \
--type MAC_INSTALLER_DISTRIBUTION \
--certificate-key=@file:/path/to/cert_key \
--save
```
Use `cert_key` of the private key you created earlier.
</li>
<li markdown="1">
Fetch the Mac Installer Distribution certificates:
```bash
app-store-connect list-certificates \
--type MAC_INSTALLER_DISTRIBUTION \
--certificate-key=@file:/path/to/cert_key \
--save
```
</li>
<li markdown="1">
Set up a new temporary keychain to be used for code signing:
```bash
keychain initialize
```
{{site.alert.secondary}}
**Restore Login Keychain!**
After running `keychain initialize` you **must** run the following:<br>
`keychain use-login`
This sets your login keychain as the default to avoid potential
authentication issues with apps on your machine.
{{site.alert.end}}
</li>
<li markdown="1">
Now add the fetched certificates to your keychain:
```bash
keychain add-certificates
```
</li>
<li markdown="1">
Update the Xcode project settings to use fetched code signing profiles:
```bash
xcode-project use-profiles
```
</li>
<li markdown="1">
Install Flutter dependencies:
```bash
flutter packages pub get
```
</li>
<li markdown="1">
Install CocoaPods dependencies:
```bash
find . -name "Podfile" -execdir pod install \;
```
</li>
<li markdown="1">
Build the Flutter macOS project:
```bash
flutter build macos --release
```
</li>
<li markdown="1">
Package the app:
```bash
APP_NAME=$(find $(pwd) -name "*.app")
PACKAGE_NAME=$(basename "$APP_NAME" .app).pkg
xcrun productbuild --component "$APP_NAME" /Applications/ unsigned.pkg
INSTALLER_CERT_NAME=$(keychain list-certificates \
| jq '[.[]
| select(.common_name
| contains("Mac Developer Installer"))
| .common_name][0]' \
| xargs)
xcrun productsign --sign "$INSTALLER_CERT_NAME" unsigned.pkg "$PACKAGE_NAME"
rm -f unsigned.pkg
```
</li>
<li markdown="1">
Publish the packaged app to App Store Connect:
```bash
app-store-connect publish \
--path "$PACKAGE_NAME"
```
</li>
<li markdown="1">
As mentioned earlier, don't forget to set your login keychain
as the default to avoid authentication issues
with apps on your machine:
```bash
keychain use-login
```
</li>
</ol>
## Release your app on TestFlight
[TestFlight][] allows developers to push their apps
to internal and external testers. This optional step
covers releasing your build on TestFlight.
1. Navigate to the TestFlight tab of your app's application
details page on [App Store Connect][appstoreconnect_login].
1. Select **Internal Testing** in the sidebar.
1. Select the build to publish to testers, then click **Save**.
1. Add the email addresses of any internal testers.
You can add additional internal users in the **Users and Roles**
page of App Store Connect,
available from the dropdown menu at the top of the page.
## Distribute to registered devices
See [distribution guide][distributionguide_macos]
to prepare an archive for distribution to designated Mac computers.
## Release your app to the App Store
When you're ready to release your app to the world,
follow these steps to submit your app for review and
release to the App Store:
1. Select **Pricing and Availability** from the sidebar of your app's
application details page on
[App Store Connect][appstoreconnect_login] and complete the
required information.
1. Select the status from the sidebar. If this is the first
release of this app, its status is
**1.0 Prepare for Submission**. Complete all required fields.
1. Click **Submit for Review**.
Apple notifies you when their app review process is complete.
Your app is released according to the instructions you
specified in the **Version Release** section.
For more details, see
[Distribute an app through the App Store][distributionguide_submit].
## Troubleshooting
The [Distribute your app][distributionguide] guide provides a
detailed overview of the process of releasing an app to the App Store.
[appicon]: {{site.apple-dev}}/design/human-interface-guidelines/macos/icons-and-images/app-icon/
[appreview]: {{site.apple-dev}}/app-store/review/
[appsigning]: https://help.apple.com/xcode/mac/current/#/dev154b28f09
[appstore]: {{site.apple-dev}}/app-store/submissions/
[appstoreconnect]: {{site.apple-dev}}/support/app-store-connect/
[appstoreconnect_api_key]: https://appstoreconnect.apple.com/access/api
[appstoreconnect_guide]: {{site.apple-dev}}/support/app-store-connect/
[appstoreconnect_guide_register]: https://help.apple.com/app-store-connect/#/dev2cd126805
[appstoreconnect_login]: https://appstoreconnect.apple.com/
[codemagic_cli_tools]: {{site.github}}/codemagic-ci-cd/cli-tools
[codesigning_guide]: {{site.apple-dev}}/library/content/documentation/Security/Conceptual/CodeSigningGuide/Introduction/Introduction.html
[Core Foundation Keys]: {{site.apple-dev}}/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
[devportal_appids]: {{site.apple-dev}}/account/resources/identifiers/list
[devportal_certificates]: {{site.apple-dev}}/account/resources/certificates/list
[devprogram]: {{site.apple-dev}}/programs/
[devprogram_membership]: {{site.apple-dev}}/support/compare-memberships/
[distributionguide]: https://help.apple.com/xcode/mac/current/#/dev8b4250b57
[distributionguide_config]: https://help.apple.com/xcode/mac/current/#/dev91fe7130a
[distributionguide_macos]: https://help.apple.com/xcode/mac/current/#/dev295cc0fae
[distributionguide_submit]: https://help.apple.com/xcode/mac/current/#/dev067853c94
[distributionguide_upload]: https://help.apple.com/xcode/mac/current/#/dev442d7f2ca
[obfuscating your Dart code]: /deployment/obfuscate
[TestFlight]: {{site.apple-dev}}/testflight/
| website/src/deployment/macos.md/0 | {
"file_path": "website/src/deployment/macos.md",
"repo_id": "website",
"token_count": 4635
} | 1,279 |
---
title: Flutter for web developers
description: Learn how to apply Web developer knowledge when building Flutter apps.
css-old: [two_column.css]
---
<?code-excerpt path-base="get-started/flutter-for/web_devs"?>
This page is for users who are familiar with the HTML
and CSS syntax for arranging components of an application's UI.
It maps HTML/CSS code snippets to their Flutter/Dart code equivalents.
Flutter is a framework for building cross-platform applications
that uses the Dart programming language.
To understand some differences between programming with Dart
and programming with Javascript,
see [Learning Dart as a JavaScript Developer][].
One of the fundamental differences between
designing a web layout and a Flutter layout,
is learning how constraints work,
and how widgets are sized and positioned.
To learn more, see [Understanding constraints][].
The examples assume:
* The HTML document starts with `<!DOCTYPE html>`, and the CSS box model
for all HTML elements is set to [`border-box`][],
for consistency with the Flutter model.
```css
{
box-sizing: border-box;
}
```
* In Flutter, the default styling of the 'Lorem ipsum' text
is defined by the `bold24Roboto` variable as follows,
to keep the syntax simple:
<?code-excerpt "lib/main.dart (TextStyle)"?>
```dart
TextStyle bold24Roboto = const TextStyle(
color: Colors.white,
fontSize: 24,
fontWeight: FontWeight.bold,
);
```
{{site.alert.secondary}}
How is react-style, or _declarative_, programming different from the
traditional imperative style?
For a comparison, see [Introduction to declarative UI][].
{{site.alert.end}}
## Performing basic layout operations
The following examples show how to perform the most common UI layout tasks.
### Styling and aligning text
Font style, size, and other text attributes that CSS
handles with the font and color properties are individual
properties of a [`TextStyle`][] child of a [`Text`][] widget.
For text-align property in CSS that is used for aligning text,
there is a textAlign property of a [`Text`][] widget.
In both HTML and Flutter, child elements or widgets
are anchored at the top left, by default.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
Lorem ipsum
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
[[highlight]]font: 900 24px Georgia;[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Container)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: const Text(
'Lorem ipsum',
style: [[highlight]]TextStyle(
fontFamily: 'Georgia',
fontSize: 24,
fontWeight: FontWeight.bold,
),
[[/highlight]]
[[highlight]]textAlign: TextAlign.center, [[/highlight]]
),
);
{% endprettify %}
</div>
### Setting background color
In Flutter, you set the background color using the `color` property
or the `decoration` property of a [`Container`][].
However, you cannot supply both, since it would potentially
result in the decoration drawing over the background color.
The `color` property should be preferred
when the background is a simple color.
For other cases, such as gradients or images,
use the `decoration` property.
The CSS examples use the hex color equivalents to the Material color palette.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
Lorem ipsum
</div>
.grey-box {
[[highlight]]background-color: #e0e0e0;[[/highlight]] /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Container2)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
[[highlight]]color: Colors.grey[300],
[[/highlight]]
child: Text(
'Lorem ipsum',
style: bold24Roboto,
),
);
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Container3)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
[[highlight]]decoration: BoxDecoration(
color: Colors.grey[300],
),
[[/highlight]]
child: Text(
'Lorem ipsum',
style: bold24Roboto,
),
);
{% endprettify %}
</div>
### Centering components
A [`Center`][] widget centers its child both horizontally
and vertically.
To accomplish a similar effect in CSS, the parent element uses either a flex
or table-cell display behavior. The examples on this page show the flex
behavior.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
Lorem ipsum
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
[[highlight]]display: flex;
align-items: center;
justify-content: center;[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Center)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: [[highlight]]Center(
child: [[/highlight]]Text(
'Lorem ipsum',
style: bold24Roboto,
),
),
);
{% endprettify %}
</div>
### Setting container width
To specify the width of a [`Container`][]
widget, use its `width` property.
This is a fixed width, unlike the CSS max-width property
that adjusts the container width up to a maximum value.
To mimic that effect in Flutter,
use the `constraints` property of the Container.
Create a new [`BoxConstraints`][] widget with a `minWidth` or `maxWidth`.
For nested Containers, if the parent's width is less than the child's width,
the child Container sizes itself to match the parent.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
[[highlight]]width: 320px;[[/highlight]]
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
[[highlight]]width: 100%;
max-width: 240px;[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Nested)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
[[highlight]]width: 320,
[[/highlight]]
height: 240,
color: Colors.grey[300],
child: Center(
child: Container(
// red box
[[highlight]]width: 240,
[[/highlight]]// max-width is 240
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.red[400],
),
child: Text(
'Lorem ipsum',
style: bold24Roboto,
),
),
),
);
{% endprettify %}
</div>
## Manipulating position and size
The following examples show how to perform more complex operations
on widget position, size, and background.
### Setting absolute position
By default, widgets are positioned relative to their parent.
To specify an absolute position for a widget as x-y coordinates,
nest it in a [`Positioned`][] widget that is,
in turn, nested in a [`Stack`][] widget.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum
</div>
</div>
.grey-box {
[[highlight]]position: relative;[[/highlight]]
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
}
.red-box {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
[[highlight]]position: absolute;
top: 24px;
left: 24px;[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Absolute)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
[[highlight]]child: Stack(
children: [[/highlight]][
Positioned(
// red box
[[highlight]]left: 24,
top: 24,
[[/highlight]]
child: Container(
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.red[400],
),
child: Text(
'Lorem ipsum',
style: bold24Roboto,
),
),
),
],
),
);
{% endprettify %}
</div>
### Rotating components
To rotate a widget, nest it in a [`Transform`][] widget.
Use the `Transform` widget's `alignment` and `origin` properties
to specify the transform origin (fulcrum) in relative and absolute terms,
respectively.
For a simple 2D rotation, in which the widget is rotated on the Z axis,
create a new [`Matrix4`][] identity object
and use its `rotateZ()` method to specify the rotation factor
using radians (degrees × π / 180).
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
[[highlight]]transform: rotate(15deg);[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Rotating)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: Center(
child: [[highlight]]Transform(
alignment: Alignment.center,
transform: Matrix4.identity()..rotateZ(15 * 3.1415927 / 180),
child: [[/highlight]]Container(
// red box
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.red[400],
),
child: Text(
'Lorem ipsum',
style: bold24Roboto,
textAlign: TextAlign.center,
),
),
),
),
);
{% endprettify %}
</div>
### Scaling components
To scale a widget up or down, nest it in a [`Transform`][] widget.
Use the Transform widget's `alignment` and `origin` properties
to specify the transform origin (fulcrum) in relative or absolute terms,
respectively.
For a simple scaling operation along the x-axis,
create a new [`Matrix4`][] identity object
and use its `scale()` method to specify the scaling factor.
When you scale a parent widget,
its child widgets are scaled accordingly.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
[[highlight]]transform: scale(1.5);[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Scaling)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: Center(
child: [[highlight]]Transform(
alignment: Alignment.center,
transform: Matrix4.identity()..scale(1.5),
child: [[/highlight]]Container(
// red box
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.red[400],
),
child: Text(
'Lorem ipsum',
style: bold24Roboto,
textAlign: TextAlign.center,
),
),
),
),
);
{% endprettify %}
</div>
### Applying a linear gradient
To apply a linear gradient to a widget's background,
nest it in a [`Container`][] widget.
Then use the `Container` widget's `decoration` property to create a
[`BoxDecoration`][] object, and use `BoxDecoration`'s `gradient`
property to transform the background fill.
The gradient "angle" is based on the Alignment (x, y) values:
* If the beginning and ending x values are equal,
the gradient is vertical (0° | 180°).
* If the beginning and ending y values are equal,
the gradient is horizontal (90° | 270°).
#### Vertical gradient
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
padding: 16px;
color: #ffffff;
[[highlight]]background: linear-gradient(180deg, #ef5350, rgba(0, 0, 0, 0) 80%);[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Gradient)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: Center(
child: Container(
// red box
[[highlight]]decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment.topCenter,
end: Alignment(0.0, 0.6),
colors: <Color>[
Color(0xffef5350),
Color(0x00ef5350),
],
),
),
[[/highlight]]
padding: const EdgeInsets.all(16),
child: Text(
'Lorem ipsum',
style: bold24Roboto,
),
),
),
);
{% endprettify %}
</div>
#### Horizontal gradient
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
padding: 16px;
color: #ffffff;
[[highlight]]background: linear-gradient(90deg, #ef5350, rgba(0, 0, 0, 0) 80%);[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (HorizontalGradient)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: Center(
child: Container(
// red box
padding: const EdgeInsets.all(16),
[[highlight]]decoration: const BoxDecoration(
gradient: LinearGradient(
begin: Alignment(-1.0, 0.0),
end: Alignment(0.6, 0.0),
colors: <Color>[
Color(0xffef5350),
Color(0x00ef5350),
],
),
),
[[/highlight]]
child: Text(
'Lorem ipsum',
style: bold24Roboto,
),
),
),
);
{% endprettify %}
</div>
## Manipulating shapes
The following examples show how to make and customize shapes.
### Rounding corners
To round the corners of a rectangular shape,
use the `borderRadius` property of a [`BoxDecoration`][] object.
Create a new [`BorderRadius`][]
object that specifies the radius for rounding each corner.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
[[highlight]]border-radius: 8px;[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (RoundCorners)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: Center(
child: Container(
// red circle
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.red[400],
[[highlight]]borderRadius: const BorderRadius.all(
Radius.circular(8),
), [[/highlight]]
),
child: Text(
'Lorem ipsum',
style: bold24Roboto,
),
),
),
);
{% endprettify %}
</div>
### Adding box shadows
In CSS you can specify shadow offset and blur in shorthand,
using the box-shadow property. This example shows two box shadows,
with properties:
* `xOffset: 0px, yOffset: 2px, blur: 4px, color: black @80% alpha`
* `xOffset: 0px, yOffset: 06x, blur: 20px, color: black @50% alpha`
In Flutter, each property and value is specified separately.
Use the `boxShadow` property of `BoxDecoration` to create a list of
[`BoxShadow`][] widgets. You can define one or multiple
`BoxShadow` widgets, which can be stacked
to customize the shadow depth, color, and so on.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
[[highlight]]box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8),
0 6px 20px rgba(0, 0, 0, 0.5);[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (BoxShadow)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
margin: const EdgeInsets.only(bottom: 16),
decoration: BoxDecoration(
color: Colors.grey[300],
),
child: Center(
child: Container(
// red box
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.red[400],
[[highlight]]boxShadow: const <BoxShadow>[
BoxShadow(
color: Color(0xcc000000),
offset: Offset(0, 2),
blurRadius: 4,
),
BoxShadow(
color: Color(0x80000000),
offset: Offset(0, 6),
blurRadius: 20,
),
], [[/highlight]]
),
child: Text(
'Lorem ipsum',
style: bold24Roboto,
),
),
),
);
{% endprettify %}
</div>
### Making circles and ellipses
Making a circle in CSS requires a workaround of applying a
border-radius of 50% to all four sides of a rectangle,
though there are [basic shapes][].
While this approach is supported
with the `borderRadius` property of [`BoxDecoration`][],
Flutter provides a `shape` property
with [`BoxShape` enum][] for this purpose.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-circle">
Lorem ipsum
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-circle {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
[[highlight]]text-align: center;
width: 160px;
height: 160px;
border-radius: 50%;[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (Circle)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: Center(
child: Container(
// red circle
decoration: BoxDecoration(
color: Colors.red[400],
[[highlight]]shape: BoxShape.circle, [[/highlight]]
),
padding: const EdgeInsets.all(16),
[[highlight]]width: 160,
height: 160,
[[/highlight]]
child: Text(
'Lorem ipsum',
style: bold24Roboto,
[[highlight]]textAlign: TextAlign.center, [[/highlight]]
),
),
),
);
{% endprettify %}
</div>
## Manipulating text
The following examples show how to specify fonts and other
text attributes. They also show how to transform text strings,
customize spacing, and create excerpts.
### Adjusting text spacing
In CSS, you specify the amount of white space
between each letter or word by giving a length value
for the letter-spacing and word-spacing properties, respectively.
The amount of space can be in px, pt, cm, em, etc.
In Flutter, you specify white space as logical pixels
(negative values are allowed)
for the `letterSpacing` and `wordSpacing` properties
of a [`TextStyle`][] child of a `Text` widget.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
[[highlight]]letter-spacing: 4px;[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (TextSpacing)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: Center(
child: Container(
// red box
padding: const EdgeInsets.all(16),
decoration: BoxDecoration(
color: Colors.red[400],
),
child: const Text(
'Lorem ipsum',
style: TextStyle(
color: Colors.white,
fontSize: 24,
fontWeight: FontWeight.w900,
[[highlight]]letterSpacing: 4, [[/highlight]]
),
),
),
),
);
{% endprettify %}
</div>
### Making inline formatting changes
A [`Text`][] widget lets you display text
with some formatting characteristics.
To display text that uses multiple styles
(in this example, a single word with emphasis),
use a [`RichText`][] widget instead.
Its `text` property can specify one or more
[`TextSpan`][] objects that can be individually styled.
In the following example, "Lorem" is in a `TextSpan`
with the default (inherited) text styling,
and "ipsum" is in a separate `TextSpan` with custom styling.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
[[highlight]]Lorem <em>ipsum</em>[[/highlight]]
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
[[highlight]]font: 900 24px Roboto;[[/highlight]]
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
}
[[highlight]].red-box em {
font: 300 48px Roboto;
font-style: italic;
}[[/highlight]]
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (InlineFormatting)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: Center(
child: Container(
// red box
decoration: BoxDecoration(
color: Colors.red[400],
),
padding: const EdgeInsets.all(16),
child: [[highlight]]RichText(
text: TextSpan(
style: bold24Roboto,
children: const <TextSpan>[
TextSpan(text: 'Lorem '),
TextSpan(
text: 'ipsum',
style: TextStyle(
fontWeight: FontWeight.w300,
fontStyle: FontStyle.italic,
fontSize: 48,
),
),
],
),
), [[/highlight]]
),
),
);
{% endprettify %}
</div>
### Creating text excerpts
An excerpt displays the initial line(s) of text in a paragraph,
and handles the overflow text, often using an ellipsis.
In Flutter, use the `maxLines` property of a [`Text`][] widget
to specify the number of lines to include in the excerpt,
and the `overflow` property for handling overflow text.
<div class="lefthighlight">
{% prettify css %}
<div class="grey-box">
<div class="red-box">
Lorem ipsum dolor sit amet, consec etur
</div>
</div>
.grey-box {
background-color: #e0e0e0; /* grey 300 */
width: 320px;
height: 240px;
font: 900 24px Roboto;
display: flex;
align-items: center;
justify-content: center;
}
.red-box {
background-color: #ef5350; /* red 400 */
padding: 16px;
color: #ffffff;
[[highlight]]overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;[[/highlight]]
}
{% endprettify %}
</div>
<div class="righthighlight">
<?code-excerpt "lib/main.dart (TextExcerpt)" replace="/\/\*//g;/\*\/ *//g"?>
{% prettify dart %}
final container = Container(
// grey box
width: 320,
height: 240,
color: Colors.grey[300],
child: Center(
child: Container(
// red box
decoration: BoxDecoration(
color: Colors.red[400],
),
padding: const EdgeInsets.all(16),
child: Text(
'Lorem ipsum dolor sit amet, consec etur',
style: bold24Roboto,
[[highlight]]overflow: TextOverflow.ellipsis,
maxLines: 1, [[/highlight]]
),
),
),
);
{% endprettify %}
</div>
<div class="end-examples"></div>
[basic shapes]: https://developer.mozilla.org/en-US/docs/Web/CSS/basic-shape
[`border-box`]: https://css-tricks.com/box-sizing/
[`BorderRadius`]: {{site.api}}/flutter/painting/BorderRadius-class.html
[`BoxDecoration`]: {{site.api}}/flutter/painting/BoxDecoration-class.html
[`BoxConstraints`]: {{site.api}}/flutter/rendering/BoxConstraints-class.html
[`BoxShape` enum]: {{site.api}}/flutter/painting/BoxShape.html
[`BoxShadow`]: {{site.api}}/flutter/painting/BoxShadow-class.html
[`Center`]: {{site.api}}/flutter/widgets/Center-class.html
[`Container`]: {{site.api}}/flutter/widgets/Container-class.html
[Introduction to declarative UI]: /get-started/flutter-for/declarative
[Learning Dart as a JavaScript Developer]: {{site.dart-site}}/guides/language/coming-from/js-to-dart
[`Matrix4`]: {{site.api}}/flutter/vector_math_64/Matrix4-class.html
[`Positioned`]: {{site.api}}/flutter/widgets/Positioned-class.html
[`RichText`]: {{site.api}}/flutter/widgets/RichText-class.html
[`Stack`]: {{site.api}}/flutter/widgets/Stack-class.html
[`Text`]: {{site.api}}/flutter/widgets/Text-class.html
[`TextSpan`]: {{site.api}}/flutter/painting/TextSpan-class.html
[`TextStyle`]: {{site.api}}/flutter/painting/TextStyle-class.html
[`Transform`]: {{site.api}}/flutter/widgets/Transform-class.html
[Understanding constraints]: /ui/layout/constraints
| website/src/get-started/flutter-for/web-devs.md/0 | {
"file_path": "website/src/get-started/flutter-for/web-devs.md",
"repo_id": "website",
"token_count": 10709
} | 1,280 |
## Get the Flutter SDK {#get-sdk}
{% include docs/china-notice.md %}
1. Download the following installation bundle to get the latest
{{site.sdk.channel}} release of the Flutter SDK:
|Intel | | <span class="apple-silicon">Apple Silicon</span> |
|------| | ---------------|
|[(loading...)](#){:.download-latest-link-{{os}}.btn.btn-primary} | | [(loading...)](#){:.download-latest-link-{{os}}-arm64.apple-silicon.btn.btn-primary} |
<br>
For other release channels, and older builds,
check out the [SDK archive][].
<div class="apple-silicon">{{site.alert.tip}}
To determine whether your Mac uses an Apple silicon processor,
refer to [Mac computers with Apple silicon][]{:target="_blank"}
on apple.com
{{site.alert.end}}</div>
1. Extract the file in the desired location. For example:
{% comment %}
Our JS also updates the filename in this template,
but it doesn't include the terminal formatting:
```terminal
$ cd ~/development
$ unzip ~/Downloads/[[download-latest-link-filename]]flutter_{{os}}_vX.X.X-{{site.sdk.channel}}.zip[[/end]]
```
{% endcomment
-%}
```terminal
$ cd ~/development
$ unzip ~/Downloads/flutter_{{os}}_vX.X.X-{{site.sdk.channel}}.zip
```
1. Add the `flutter` tool to your path:
```terminal
$ export PATH="$PATH:`pwd`/flutter/bin"
```
This command sets your `PATH` variable for the
_current_ terminal window only.
To permanently add Flutter to your path,
check out [Update your path][].
You are now ready to run Flutter commands!
{{site.alert.note}}
To update an existing version of Flutter,
check out [Upgrading Flutter][].
{{site.alert.end}}
### Run flutter doctor
Run the following command to see if there are any
dependencies you need to install to complete the setup
(for verbose output, add the `-v` flag):
```terminal
$ flutter doctor
```
This command checks your environment and displays
a report to the terminal window.
The Dart SDK is bundled with Flutter;
it isn't necessary to install Dart separately.
Check the output carefully for other software you might
need to install or further tasks to perform
(shown in **bold** text).
For example:
<pre>
[-] Android toolchain - develop for Android devices
• Android SDK at /Users/dash/Library/Android/sdk
<strong>✗ Android SDK is missing command line tools; download from https://goo.gl/XxQghQ</strong>
• Try re-installing or updating your Android SDK,
visit /setup/#android-setup for detailed instructions.
</pre>
The following sections describe how to perform these tasks
and finish the setup process.
Once you have installed any missing dependencies,
run the `flutter doctor` command again
to verify that you've set everything up correctly.
### Downloading straight from GitHub instead of using an archive
_This is only suggested for advanced use cases._
You can also use git directly instead of downloading
the prepared archive. For example,
to download the stable branch:
```terminal
$ git clone https://github.com/flutter/flutter.git -b stable
```
[Update your path][], and run `flutter doctor`.
This lets you know if there are other dependencies
you need to install to use Flutter (such as the Android SDK).
If you didn't use the archive,
Flutter downloads necessary development binaries as they
are needed (if you used the archive,
they are included in the download). You might want to
pre-download these development binaries
(for example, you might do this when setting
up hermetic build environments,
or if you only have intermittent network availability).
To do so, run the following command:
```terminal
$ flutter precache
```
For additional download options, check out `flutter help precache`.
{% include_relative _analytics.md %}
[Flutter repo]: {{site.repo.flutter}}
[SDK archive]: /release/archive
[Snap Store]: https://snapcraft.io/store
[snapd]: https://snapcraft.io/flutter
[Update your path]: #update-your-path
[Upgrading Flutter]: /release/upgrade
[Mac computers with Apple silicon]: https://support.apple.com/en-us/HT211814
| website/src/get-started/install/_deprecated/_get-sdk-mac.md/0 | {
"file_path": "website/src/get-started/install/_deprecated/_get-sdk-mac.md",
"repo_id": "website",
"token_count": 1281
} | 1,281 |
---
title: Start building Flutter web apps on Linux
description: Configure your system to develop Flutter web apps on Linux.
short-title: Make web apps
target: Web
config: LinuxWeb
devos: Linux
next:
title: Create a test app
path: /get-started/test-drive
---
{% include docs/install/reqs/linux/base.md
os=page.devos
target=page.target
-%}
{% include docs/install/flutter-sdk.md
os=page.devos
target=page.target
terminal='a shell'
-%}
{% include docs/install/flutter-doctor.md
devos=page.devos
target=page.target
config=page.config
-%}
{% include docs/install/next-steps.md
devos=page.devos
target=page.target
config=page.config
-%}
| website/src/get-started/install/linux/web.md/0 | {
"file_path": "website/src/get-started/install/linux/web.md",
"repo_id": "website",
"token_count": 256
} | 1,282 |
---
title: Background processes
description: Where to find more information on implementing background processes in Flutter.
---
Have you ever wanted to execute Dart code in the
background—even if your app wasn't the currently active app?
Perhaps you wanted to implement a process that watches the time,
or that catches camera movement.
In Flutter, you can execute Dart code in the background.
The mechanism for this feature involves setting up an isolate.
_Isolates_ are Dart's model for multithreading,
though an isolate differs from a conventional thread
in that it doesn't share memory with the main program.
You'll set up your isolate for background execution using
callbacks and a callback dispatcher.
Additionally, the [WorkManager] plugin enables persistent background processing
that keeps tasks scheduled through app restarts and system reboots.
For more information and a geofencing example that uses background
execution of Dart code, see the Medium article by Ben Konyi,
[Executing Dart in the Background with Flutter Plugins and
Geofencing][background-processes]. At the end of this article,
you'll find links to example code, and relevant documentation for Dart,
iOS, and Android.
[background-processes]: {{site.flutter-medium}}/executing-dart-in-the-background-with-flutter-plugins-and-geofencing-2b3e40a1a124
[WorkManager]: {{site.pub-pkg}}/workmanager
| website/src/packages-and-plugins/background-processes.md/0 | {
"file_path": "website/src/packages-and-plugins/background-processes.md",
"repo_id": "website",
"token_count": 336
} | 1,283 |
---
title: Flutter performance profiling
subtitle: Where to look when your Flutter app drops frames in the UI.
description: Diagnosing UI performance issues in Flutter.
---
{% include docs/performance.md %}
{{site.alert.secondary}}
<h4>What you'll learn</h4>
* Flutter aims to provide 60 frames per second (fps) performance,
or 120 fps performance on devices capable of 120Hz updates.
* For 60fps, frames need to render approximately every 16ms.
* Jank occurs when the UI doesn't render smoothly. For example,
every so often, a frame takes 10 times longer to render,
so it gets dropped, and the animation visibly jerks.
{{site.alert.end}}
It's been said that "a _fast_ app is great,
but a _smooth_ app is even better."
If your app isn't rendering smoothly,
how do you fix it? Where do you begin?
This guide shows you where to start,
steps to take, and tools that can help.
{{site.alert.note}}
* An app's performance is determined by more than one measure.
Performance sometimes refers to raw speed, but also to the UI's
smoothness and lack of stutter. Other examples of performance
include I/O or network speed. This page primarily focuses on the
second type of performance (UI smoothness), but you can use most
of the same tools to diagnose other performance problems.
* To perform tracing inside your Dart code, see [Tracing Dart code][]
in the [Debugging][] page.
{{site.alert.end}}
[Debugging]: /testing/debugging
[Tracing Dart code]: /testing/code-debugging#trace-dart-code-performance
## Diagnosing performance problems
To diagnose an app with performance problems, you'll enable
the performance overlay to look at the UI and raster threads.
Before you begin, make sure that you're running in
[profile mode][], and that you're not using an emulator.
For best results, you might choose the slowest device that
your users might use.
[profile mode]: /testing/build-modes#profile
### Connect to a physical device
Almost all performance debugging for Flutter applications
should be conducted on a physical Android or iOS device,
with your Flutter application running in [profile mode][].
Using debug mode, or running apps on simulators
or emulators, is generally not indicative of the final
behavior of release mode builds.
_You should consider checking performance
on the slowest device that your users might reasonably use._
{{site.alert.secondary}}
<h4 markdown="1">**Why you should run on a real device:**</h4>
* Simulators and emulators don't use the same hardware, so their
performance characteristics are different—some operations are
faster on simulators than real devices, and some are slower.
* Debug mode enables additional checks (such as asserts) that don't run
in profile or release builds, and these checks can be expensive.
* Debug mode also executes code in a different way than release mode.
The debug build compiles the Dart code "just in time" (JIT) as the
app runs, but profile and release builds are pre-compiled to native
instructions (also called "ahead of time", or AOT) before the app is
loaded onto the device. JIT can cause the app to pause for JIT
compilation, which itself can cause jank.
{{site.alert.end}}
### Run in profile mode
Flutter's profile mode compiles and launches your application
almost identically to release mode, but with just enough additional
functionality to allow debugging performance problems.
For example, profile mode provides tracing information to the
profiling tools.
{{site.alert.note}}
DevTools can't connect to a Flutter web app running
in profile mode. Use Chrome DevTools to
[generate timeline events][] for a web app.
{{site.alert.end}}
[generate timeline events]: {{site.developers}}/web/tools/chrome-devtools/evaluate-performance/performance-reference
Launch the app in profile mode as follows:
* In VS Code, open your `launch.json` file, and set the
`flutterMode` property to `profile`
(when done profiling, change it back to `release` or `debug`):
```json
"configurations": [
{
"name": "Flutter",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
}
]
```
* In Android Studio and IntelliJ, use the
**Run > Flutter Run main.dart in Profile Mode** menu item.
* From the command line, use the `--profile` flag:
```terminal
$ flutter run --profile
```
For more information on the different modes,
see [Flutter's build modes][].
You'll begin by opening DevTools and viewing
the performance overlay, as discussed in the next section.
[Flutter's build modes]: /testing/build-modes
## Launch DevTools
DevTools provides features like profiling, examining the heap,
displaying code coverage, enabling the performance overlay,
and a step-by-step debugger.
DevTools' [Timeline view][] allows you to investigate the
UI performance of your application on a frame-by-frame basis.
Once your app is running in profile mode,
[launch DevTools][].
[launch DevTools]: /tools/devtools
[Timeline view]: /tools/devtools/performance
## The performance overlay
The performance overlay displays statistics in two graphs
that show where time is being spent in your app. If the UI
is janky (skipping frames), these graphs help you figure out why.
The graphs display on top of your running app, but they aren't
drawn like a normal widget—the Flutter engine itself
paints the overlay and only minimally impacts performance.
Each graph represents the last 300 frames for that thread.
This section describes how to enable the performance overlay
and use it to diagnose the cause of jank in your application.
The following screenshot shows the performance overlay running
on the Flutter Gallery example:

<br>Performance overlay showing the raster thread (top),
and UI thread (bottom).<br>The vertical green bars
represent the current frame.
## Interpreting the graphs
The top graph (marked "GPU") shows the time spent by
the raster thread, the bottom one graph shows the time
spent by the UI thread.
The white lines across the graphs show 16ms increments
along the vertical axis; if the graph ever goes over one
of these lines then you are running at less than 60Hz.
The horizontal axis represents frames. The graph is
only updated when your application paints,
so if it's idle the graph stops moving.
The overlay should always be viewed in [profile mode][],
since [debug mode][] performance is intentionally sacrificed
in exchange for expensive asserts that are intended to aid
development, and thus the results are misleading.
Each frame should be created and displayed within 1/60th of
a second (approximately 16ms). A frame exceeding this limit
(in either graph) fails to display, resulting in jank,
and a vertical red bar appears in one or both of the graphs.
If a red bar appears in the UI graph, the Dart code is too
expensive. If a red vertical bar appears in the GPU graph,
the scene is too complicated to render quickly.

<br>The vertical red bars indicate that the current frame is
expensive to both render and paint.<br>When both graphs
display red, start by diagnosing the UI thread.
[debug mode]: /testing/build-modes#debug
## Flutter's threads
Flutter uses several threads to do its work, though
only two of the threads are shown in the overlay.
All of your Dart code runs on the UI thread.
Although you have no direct access to any other thread,
your actions on the UI thread have performance consequences
on other threads.
<dl markdown="1">
<dt markdown="1">**Platform thread**</dt>
<dd markdown="1">The platform's main thread. Plugin code runs here.
For more information, see the [UIKit][] documentation for iOS,
or the [MainThread][] documentation for Android.
This thread is not shown in the performance overlay.
</dd>
<dt markdown="1">**UI thread**</dt>
<dd markdown="1">The UI thread executes Dart code in the Dart VM.
This thread includes code that you wrote, and code executed by
Flutter's framework on your app's behalf.
When your app creates and displays a scene, the UI thread creates
a _layer tree_, a lightweight object containing device-agnostic
painting commands, and sends the layer tree to the raster thread to
be rendered on the device. _Don't block this thread!_
Shown in the bottom row of the performance overlay.
</dd>
<dt markdown="1">**Raster thread**</dt>
<dd markdown="1">The raster thread takes the layer tree and displays
it by talking to the GPU (graphic processing unit).
You cannot directly access the raster thread or its data but,
if this thread is slow, it's a result of something you've done
in the Dart code. Skia and Impeller, the graphics libraries,
run on this thread.
Shown in the top row of the performance overlay.
Note that while the raster thread rasterizes for the GPU,
the thread itself runs on the CPU.
</dd>
<dt markdown="1">**I/O thread**</dt>
<dd markdown="1">Performs expensive tasks (mostly I/O) that would
otherwise block either the UI or raster threads.
This thread is not shown in the performance overlay.
</dd>
</dl>
For links to more information and videos,
see [The Framework architecture][] on the
[GitHub wiki][], and the community article,
[The Layer Cake][].
[GitHub wiki]: {{site.repo.flutter}}/wiki/
[MainThread]: {{site.android-dev}}/reference/android/support/annotation/MainThread
[The Framework architecture]: {{site.repo.flutter}}/wiki/The-Framework-architecture
[The Layer Cake]: {{site.medium}}/flutter-community/the-layer-cake-widgets-elements-renderobjects-7644c3142401
[UIKit]: {{site.apple-dev}}/documentation/uikit
### Displaying the performance overlay
You can toggle display of the performance overlay as follows:
* Using the Flutter inspector
* From the command line
* Programmatically
#### Using the Flutter inspector
The easiest way to enable the PerformanceOverlay widget is
from the Flutter inspector, which is available in the
[Inspector view][] in [DevTools][]. Simply click the
**Performance Overlay** button to toggle the overlay
on your running app.
[Inspector view]: /tools/devtools/inspector
#### From the command line
Toggle the performance overlay using the **P** key from
the command line.
#### Programmatically
To enable the overlay programmatically, see
[Performance overlay][], a section in the
[Debugging Flutter apps programmatically][] page.
[Debugging Flutter apps programmatically]: /testing/code-debugging
[Performance overlay]: /testing/code-debugging#add-performance-overlay
## Identifying problems in the UI graph
If the performance overlay shows red in the UI graph,
start by profiling the Dart VM, even if the GPU graph
also shows red.
## Identifying problems in the GPU graph
Sometimes a scene results in a layer tree that is easy to construct,
but expensive to render on the raster thread. When this happens,
the UI graph has no red, but the GPU graph shows red.
In this case, you'll need to figure out what your code is doing
that is causing rendering code to be slow. Specific kinds of workloads
are more difficult for the GPU. They might involve unnecessary calls
to [`saveLayer`][], intersecting opacities with multiple objects,
and clips or shadows in specific situations.
If you suspect that the source of the slowness is during an animation,
click the **Slow Animations** button in the Flutter inspector
to slow animations down by 5x.
If you want more control on the speed, you can also do this
[programmatically][].
Is the slowness on the first frame, or on the whole animation?
If it's the whole animation, is clipping causing the slow down?
Maybe there's an alternative way of drawing the scene that doesn't
use clipping. For example, overlay opaque corners onto a square
instead of clipping to a rounded rectangle.
If it's a static scene that's being faded, rotated, or otherwise
manipulated, a [`RepaintBoundary`][] might help.
[programmatically]: /testing/code-debugging#debug-animation-issues
[`RepaintBoundary`]: {{site.api}}/flutter/widgets/RepaintBoundary-class.html
[`saveLayer`]: {{site.api}}/flutter/dart-ui/Canvas/saveLayer.html
#### Checking for offscreen layers
The [`saveLayer`][] method is one of the most expensive methods in
the Flutter framework. It's useful when applying post-processing
to the scene, but it can slow your app and should be avoided if
you don't need it. Even if you don't call `saveLayer` explicitly,
implicit calls might happen on your behalf. You can check whether
your scene is using `saveLayer` with the
[`PerformanceOverlayLayer.checkerboardOffscreenLayers`][] switch.
{% comment %}
[TODO: Document disabling the graphs and checkerboardRasterCacheImages.
Flutter inspector doesn't seem to support this?]
{% endcomment %}
Once the switch is enabled, run the app and look for any images
that are outlined with a flickering box. The box flickers from
frame to frame if a new frame is being rendered. For example,
perhaps you have a group of objects with opacities that are rendered
using `saveLayer`. In this case, it's probably more performant to
apply an opacity to each individual widget, rather than a parent
widget higher up in the widget tree. The same goes for
other potentially expensive operations, such as clipping or shadows.
{{site.alert.note}}
Opacity, clipping, and shadows are not, in themselves,
a bad idea. However, applying them to the top of the
widget tree might cause extra calls to `saveLayer`,
and needless processing.
{{site.alert.end}}
When you encounter calls to `saveLayer`,
ask yourself these questions:
* Does the app need this effect?
* Can any of these calls be eliminated?
* Can I apply the same effect to an individual element instead of a group?
[`PerformanceOverlayLayer.checkerboardOffscreenLayers`]: {{site.api}}/flutter/rendering/PerformanceOverlayLayer/checkerboardOffscreenLayers.html
#### Checking for non-cached images
Caching an image with [`RepaintBoundary`][] is good,
_when it makes sense_.
One of the most expensive operations,
from a resource perspective,
is rendering a texture using an image file.
First, the compressed image
is fetched from persistent storage.
The image is decompressed into host memory (GPU memory),
and transferred to device memory (RAM).
In other words, image I/O can be expensive.
The cache provides snapshots of complex hierarchies so
they are easier to render in subsequent frames.
_Because raster cache entries are expensive to
construct and take up loads of GPU memory,
cache images only where absolutely necessary._
You can see which images are being cached by enabling the
[`PerformanceOverlayLayer.checkerboardRasterCacheImages`][] switch.
{% comment %}
[TODO: Document how to do this, either via UI or programmatically.
At this point, disable the graphs and checkerboardOffScreenLayers.]
{% endcomment %}
Run the app and look for images rendered with a randomly colored
checkerboard, indicating that the image is cached.
As you interact with the scene, the checkerboarded images
should remain constant—you don't want to see flickering,
which would indicate that the cached image is being re-cached.
In most cases, you want to see checkerboards on static images,
but not on non-static images. If a static image isn't cached,
you can cache it by placing it into a [`RepaintBoundary`][]
widget. Though the engine might still ignore a repaint
boundary if it thinks the image isn't complex enough.
[`PerformanceOverlayLayer.checkerboardRasterCacheImages`]: {{site.api}}/flutter/rendering/PerformanceOverlayLayer/checkerboardRasterCacheImages.html
### Viewing the widget rebuild profiler
The Flutter framework is designed to make it hard to create
applications that are not 60fps and smooth. Often, if you have jank,
it's because there is a simple bug causing more of the UI to be
rebuilt each frame than required. The Widget rebuild profiler
helps you debug and fix performance problems due to these sorts
of bugs.
You can view the widget rebuilt counts for the current screen and
frame in the Flutter plugin for Android Studio and IntelliJ.
For details on how to do this, see [Show performance data][]
[Show performance data]: /tools/android-studio#show-performance-data
## Benchmarking
You can measure and track your app's performance by writing
benchmark tests. The Flutter Driver library provides support
for benchmarking. Using this integration test framework,
you can generate metrics to track the following:
* Jank
* Download size
* Battery efficiency
* Startup time
Tracking these benchmarks allows you to be informed when a
regression is introduced that adversely affects performance.
For more information, check out [Integration testing][].
[Integration testing]: /testing/integration-tests
## Other resources
The following resources provide more information on using
Flutter's tools and debugging in Flutter:
* [Debugging][]
* [Flutter inspector][]
* [Flutter inspector talk][], presented at DartConf 2018
* [Why Flutter Uses Dart][], an article on Hackernoon
* [Why Flutter uses Dart][video], a video on the Flutter channel
* [DevTools][devtools]: performance tooling for Dart and Flutter apps
* [Flutter API][] docs, particularly the [`PerformanceOverlay`][] class,
and the [dart:developer][] package
[dart:developer]: {{site.api}}/flutter/dart-developer/dart-developer-library.html
[devtools]: /tools/devtools
[Flutter API]: {{site.api}}
[Flutter inspector]: /tools/devtools/inspector
[Flutter inspector talk]: {{site.yt.watch}}?v=JIcmJNT9DNI
[`PerformanceOverlay`]: {{site.api}}/flutter/widgets/PerformanceOverlay-class.html
[video]: {{site.yt.watch}}?v=5F-6n_2XWR8
[Why Flutter Uses Dart]: https://hackernoon.com/why-flutter-uses-dart-dd635a054ebf
| website/src/perf/ui-performance.md/0 | {
"file_path": "website/src/perf/ui-performance.md",
"repo_id": "website",
"token_count": 4763
} | 1,284 |
---
title: Adding a splash screen to your Android app
short-title: Splash screen
description: Learn how to add a splash screen to your Android app.
---
<img src='/assets/images/docs/development/ui/splash-screen/android-splash-screen/splash-screens_header.png'
class="mw-100" alt="A graphic outlining the launch flow of an app including a splash screen">
Splash screens (also known as launch screens) provide
a simple initial experience while your Android app loads.
They set the stage for your application,
while allowing time for the app engine
to load and your app to initialize.
## Overview
{{site.alert.warning}}
If you are experiencing a crash from implementing a splash screen, you
might need to migrate your code. See detailed instructions in the
[Deprecated Splash Screen API Migration guide][].
{{site.alert.end}}
In Android, there are two separate screens that you can control:
a _launch screen_ shown while your Android app initializes,
and a _splash screen_ that displays while the Flutter experience
initializes.
{{site.alert.note}}
As of Flutter 2.5, the launch and splash screens have been
consolidated—Flutter now only implements the Android launch screen,
which is displayed until the framework draws the first frame.
This launch screen can act as both an Android launch screen and an
Android splash screen via customization, and thus, is referred to
as both terms. For example of such customization, check out the
[Android splash screen sample app][].
If, prior to 2.5, you used `flutter create` to create an app,
and you run the app on 2.5 or later, the app might crash.
For more info, see the [Deprecated Splash Screen API Migration guide][].
{{site.alert.end}}
{{site.alert.note}}
For apps that embed one or more Flutter screens within an
existing Android app, consider
[pre-warming a `FlutterEngine`][] and reusing the
same engine throughout your app to minimize wait
time associated with initialization of the Flutter engine.
{{site.alert.end}}
## Initializing the app
Every Android app requires initialization time while the
operating system sets up the app's process.
Android provides the concept of a [launch screen][] to
display a `Drawable` while the app is initializing.
A `Drawable` is an Android graphic.
To learn how to add a `Drawable` to your
Flutter project in Android Studio,
check out [Import drawables into your project][drawables]
in the Android developer documentation.
The default Flutter project template includes a definition
of a launch theme and a launch background. You can customize
this by editing `styles.xml`, where you can define a theme
whose `windowBackground` is set to the
`Drawable` that should be displayed as the launch screen.
```xml
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
```
In addition, `styles.xml` defines a _normal theme_
to be applied to `FlutterActivity` after the launch
screen is gone. The normal theme background only shows
for a very brief moment after the splash screen disappears,
and during orientation change and `Activity` restoration.
Therefore, it's recommended that the normal theme use a
solid background color that looks similar to the primary
background color of the Flutter UI.
```xml
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">@drawable/normal_background</item>
</style>
```
[drawables]: {{site.android-dev}}/studio/write/resource-manager#import
## Set up the FlutterActivity in AndroidManifest.xml
In `AndroidManifest.xml`, set the `theme` of
`FlutterActivity` to the launch theme. Then,
add a metadata element to the desired `FlutterActivity`
to instruct Flutter to switch from the launch theme
to the normal theme at the appropriate time.
```xml
<activity
android:name=".MyActivity"
android:theme="@style/LaunchTheme"
// ...
>
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
```
The Android app now displays the desired launch screen
while the app initializes.
## Android 12
To configure your launch screen on Android 12,
check out [Android Splash Screens][].
As of Android 12, you must use the new splash screen
API in your `styles.xml` file.
Consider creating an alternate resource file for Android 12 and higher.
Also make sure that your background image is in line with
the icon guidelines;
check out [Android Splash Screens][] for more details.
```xml
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowSplashScreenBackground">@color/bgColor</item>
<item name="android:windowSplashScreenAnimatedIcon">@drawable/launch_background</item>
</style>
```
Make sure that
`io.flutter.embedding.android.SplashScreenDrawable` is
**not** set in your manifest, and that `provideSplashScreen`
is **not** implemented, as these APIs are deprecated.
Doing so causes the Android launch screen to fade smoothly
into the Flutter when the
app is launched and the app might crash.
Some apps might want to continue showing the last frame of
the Android launch screen in Flutter. For example,
this preserves the illusion of a single frame
while additional loading continues in Dart.
To achieve this, the following
Android APIs might be helpful:
{% samplecode android-splash-alignment %}
{% sample Java %}
<?code-excerpt title="MainActivity.java"?>
```java
import android.os.Build;
import android.os.Bundle;
import android.window.SplashScreenView;
import androidx.core.view.WindowCompat;
import io.flutter.embedding.android.FlutterActivity;
public class MainActivity extends FlutterActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// Aligns the Flutter view vertically with the window.
WindowCompat.setDecorFitsSystemWindows(getWindow(), false);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
// Disable the Android splash screen fade out animation to avoid
// a flicker before the similar frame is drawn in Flutter.
getSplashScreen()
.setOnExitAnimationListener(
(SplashScreenView splashScreenView) -> {
splashScreenView.remove();
});
}
super.onCreate(savedInstanceState);
}
}
```
{% sample Kotlin %}
<?code-excerpt title="MainActivity.kt"?>
```kotlin
import android.os.Build
import android.os.Bundle
import androidx.core.view.WindowCompat
import io.flutter.embedding.android.FlutterActivity
class MainActivity : FlutterActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
// Aligns the Flutter view vertically with the window.
WindowCompat.setDecorFitsSystemWindows(getWindow(), false)
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) {
// Disable the Android splash screen fade out animation to avoid
// a flicker before the similar frame is drawn in Flutter.
splashScreen.setOnExitAnimationListener { splashScreenView -> splashScreenView.remove() }
}
super.onCreate(savedInstanceState)
}
}
```
{% endsamplecode %}
Then, you can reimplement the first frame in Flutter
that shows elements of your Android launch screen in
the same positions on screen.
For an example of this, check out the
[Android splash screen sample app][].
[Android Splash Screens]: {{site.android-dev}}/about/versions/12/features/splash-screen
[launch screen]: {{site.android-dev}}/topic/performance/vitals/launch-time#themed
[pre-warming a `FlutterEngine`]: /add-to-app/android/add-flutter-fragment#using-a-pre-warmed-flutterengine
[Android splash screen sample app]: {{site.repo.samples}}/tree/main/android_splash_screen
[Deprecated Splash Screen API Migration guide]: /release/breaking-changes/splash-screen-migration
[Customizing web app initialization guide]: /platform-integration/web/initialization
| website/src/platform-integration/android/splash-screen.md/0 | {
"file_path": "website/src/platform-integration/android/splash-screen.md",
"repo_id": "website",
"token_count": 2407
} | 1,285 |
---
title: Building Linux apps with Flutter
description: Platform-specific considerations for building for Linux with Flutter.
toc: true
short-title: Linux development
---
This page discusses considerations unique to building
Linux apps with Flutter, including shell integration
and preparation of apps for distribution.
## Integrating with Linux
The Linux programming interface,
comprising library functions and system calls,
is designed around the C language and ABI.
Fortunately, Dart provides `dart:ffi`,
which is designed to enable Dart programs
to efficiently call into C libraries.
FFI provides Flutter apps with the ability to
allocate native memory with `malloc` or `calloc`,
support for pointers, structs and callbacks,
and ABI types like `long` and `size_t`.
For more information about calling C libraries
from Flutter, see [C interop using `dart:ffi`][].
Many apps will benefit from using a package that
wraps the underlying library
calls in a more convenient, idiomatic Dart API.
[Canonical has built a series of packages][Canonical]
with a focus on enabling Dart and Flutter on Linux,
including support for desktop notifications,
dbus, network management, and Bluetooth.
More generally, many other [packages support Linux],
including common packages such as [`url_launcher`],
[`shared_preferences`], [`file_selector`], and
[`path_provider`].
[C interop using `dart:ffi`]: {{site.dart-site}}/guides/libraries/c-interop
[Canonical]: {{site.pub}}/publishers/canonical.com/packages
[packages support Linux]: {{site.pub}}/packages?q=platform%3Alinux
[`url_launcher`]: {{site.pub-pkg}}/url_launcher
[`shared_preferences`]: {{site.pub-pkg}}/shared_preferences
[`file_selector`]: {{site.pub-pkg}}/file_selector
[`path_provider`]: {{site.pub-pkg}}/path_provider
## Preparing Linux apps for distribution
The executable binary can be found in your project under
`build/linux/<build mode>/bundle/`. Alongside your
executable binary in the `bundle` directory there are
two directories:
* `lib` contains the required `.so` library files
* `data` contains the application's data assets,
such as fonts or images
In addition to these files, your application also
relies on various operating system libraries that
it's been compiled against.
You can see the full list by running `ldd`
against your application. For example,
assuming you have a Flutter desktop application
called `linux_desktop_test`, you could inspect
the system libraries it depends upon as follows:
```terminal
$ flutter build linux --release
$ ldd build/linux/x64/release/bundle/linux_desktop_test
```
To wrap up this application for distribution
you need to include everything in the `bundle` directory,
and make sure the Linux system you are installing
it on has all of the system libraries required.
This could be as simple as:
```terminal
$ sudo apt-get install libgtk-3-0 libblkid1 liblzma5
```
For information on publishing a Linux application
to the [Snap Store], see
[Build and release a Linux application to the Snap Store][].
[Snap Store]: https://snapcraft.io/store
[Build and release a Linux application to the Snap Store]: /deployment/linux
| website/src/platform-integration/linux/building.md/0 | {
"file_path": "website/src/platform-integration/linux/building.md",
"repo_id": "website",
"token_count": 859
} | 1,286 |
---
title: Web support for Flutter
short-title: Web
description: Details of how Flutter supports the creation of web experiences.
---
Flutter's web support delivers the same experiences on the web as on mobile.
Building on the portability of Dart, the power of the web platform and the
flexibility of the Flutter framework, you can now build apps for iOS, Android,
and the browser from the same codebase. You can compile existing Flutter code
written in Dart into a web experience because it is exactly the same Flutter
framework and **web** is just another device target for your app.
<img src="/assets/images/docs/arch-overview/web-arch.png"
alt="Flutter architecture for web"
width="100%">
Adding web support to Flutter involved implementing Flutter's
core drawing layer on top of standard browser APIs, in addition
to compiling Dart to JavaScript, instead of the ARM machine code that
is used for mobile applications. Using a combination of DOM, Canvas,
and WebAssembly, Flutter can provide a portable, high-quality,
and performant user experience across modern browsers.
We implemented the core drawing layer completely in Dart
and used Dart's optimized JavaScript compiler to compile the
Flutter core and framework along with your application
into a single, minified source file that can be deployed to
any web server.
While you can do a lot on the web,
Flutter's web support is most valuable in the
following scenarios:
**A [Progressive Web Application][] built with Flutter**
: Flutter delivers high-quality PWAs that are integrated with a user's
environment, including installation, offline support, and tailored UX.
**Single Page Application**
: Flutter's web support enables complex standalone web apps that are rich with
graphics and interactive content to reach end users on a wide variety of
devices.
**Existing mobile applications**
: Web support for Flutter provides a browser-based delivery model for existing
Flutter mobile apps.
Not every HTML scenario is ideally suited for Flutter at this time.
For example, text-rich, flow-based, static content such as blog articles
benefit from the document-centric model that the web is built around,
rather than the app-centric services that a UI framework like Flutter
can deliver. However, you _can_ use Flutter to embed interactive
experiences into these websites.
For a glimpse into how to migrate your mobile app to web, see
the following video:
<iframe width="560" height="315" src="{{site.yt.embed}}/HAstl_NkXl0" title="Learn how to move from a Mobile App to a Web App using Flutter" {{site.yt.set}}></iframe>
<a id="web"></a>
## Resources
The following resources can help you get started:
* To add web support to an existing app, or to create a
new app that includes web support, see
[Building a web application with Flutter][].
* To learn about Flutter's different web renderers (HTML and CanvasKit), see
[Web renderers][]
* To learn how to create a responsive Flutter
app, see [Creating responsive apps][].
* To view commonly asked questions and answers, see the
[web FAQ][].
* To see code examples,
check out the [web samples for Flutter][].
* To see a Flutter web app demo, check out the [Wonderous app][].
* To learn about deploying a web app, see
[Preparing an app for web release][].
* [File an issue][] on the main Flutter repo.
* You can chat and ask web-related questions on the
**#help** channel on [Discord][].
---
[Building a web application with Flutter]: /platform-integration/web/building
[Creating responsive apps]: /ui/layout/responsive/adaptive-responsive
[Discord]: https://discordapp.com/invite/yeZ6s7k
[file an issue]: https://goo.gle/flutter_web_issue
[Wonderous app]: {{site.wonderous}}/web
[Preparing an app for web release]: /deployment/web
[Progressive Web Application]: https://web.dev/progressive-web-apps/
[web FAQ]: /platform-integration/web/faq
[web samples for Flutter]: https://flutter.github.io/samples/#?platform=web
[Web renderers]: /platform-integration/web/renderers
| website/src/platform-integration/web/index.md/0 | {
"file_path": "website/src/platform-integration/web/index.md",
"repo_id": "website",
"token_count": 1052
} | 1,287 |
---
layout: toc
title: Windows
description: Content covering integration with Windows in Flutter apps.
---
| website/src/platform-integration/windows/index.md/0 | {
"file_path": "website/src/platform-integration/windows/index.md",
"repo_id": "website",
"token_count": 26
} | 1,288 |
---
title: Deprecated API removed after v2.2
description: >
After reaching end of life, the following deprecated APIs
were removed from Flutter.
---
## Summary
In accordance with Flutter's [Deprecation Policy][],
deprecated APIs that reached end of life after the
2.2 stable release have been removed.
All affected APIs have been compiled into this
primary source to aid in migration. A
[quick reference sheet][] is available as well.
[Deprecation Policy]: {{site.repo.flutter}}/wiki/Tree-hygiene#deprecation
[quick reference sheet]: /go/deprecations-removed-after-2-2
## Changes
This section lists the deprecations, listed by the affected class.
### `hasFloatingPlaceholder` of `InputDecoration` & `InputDecorationTheme`
Supported by Flutter Fix: yes
`hasFloatingPlaceholder` was deprecated in v1.13.2.
Use `floatingLabelBehavior` instead.
Where `useFloatingPlaceholder` was true, replace with `FloatingLabelBehavior.auto`.
Where `useFloatingPlaceholder` was false, replace with `FloatingLabelBehavior.never`.
This change allows more behaviors to be specified beyond the original binary
choice, adding `FloatingLabelBehavior.always` as an additional option.
**Migration guide**
Code before migration:
```dart
// InputDecoration
// Base constructor
InputDecoration(hasFloatingPlaceholder: true);
InputDecoration(hasFloatingPlaceholder: false);
// collapsed constructor
InputDecoration.collapsed(hasFloatingPlaceholder: true);
InputDecoration.collapsed(hasFloatingPlaceholder: false);
// Field access
inputDecoration.hasFloatingPlaceholder;
// InputDecorationTheme
// Base constructor
InputDecorationTheme(hasFloatingPlaceholder: true);
InputDecorationTheme(hasFloatingPlaceholder: false);
// Field access
inputDecorationTheme.hasFloatingPlaceholder;
// copyWith
inputDecorationTheme.copyWith(hasFloatingPlaceholder: false);
inputDecorationTheme.copyWith(hasFloatingPlaceholder: true);
```
Code after migration:
```dart
// InputDecoration
// Base constructor
InputDecoration(floatingLabelBehavior: FloatingLabelBehavior.auto);
InputDecoration(floatingLabelBehavior: FloatingLabelBehavior.never);
// collapsed constructor
InputDecoration.collapsed(floatingLabelBehavior: FloatingLabelBehavior.auto);
InputDecoration.collapsed(floatingLabelBehavior: FloatingLabelBehavior.never);
// Field access
inputDecoration.floatingLabelBehavior;
// InputDecorationTheme
// Base constructor
InputDecorationTheme(floatingLabelBehavior: FloatingLabelBehavior.auto);
InputDecorationTheme(floatingLabelBehavior: FloatingLabelBehavior.never);
// Field access
inputDecorationTheme.floatingLabelBehavior;
// copyWith
inputDecorationTheme.copyWith(floatingLabelBehavior: FloatingLabelBehavior.never);
inputDecorationTheme.copyWith(floatingLabelBehavior: FloatingLabelBehavior.auto);
```
**References**
API documentation:
* [`InputDecoration`][]
* [`InputDecorationTheme`][]
* [`FloatingLabelBehavior`][]
Relevant issues:
* [InputDecoration: option to always float label][]
Relevant PRs:
* Deprecated in [#46115][]
* Removed in [#83923][]
[`InputDecoration`]: {{site.api}}/flutter/material/InputDecoration-class.html
[`InputDecorationTheme`]: {{site.api}}/flutter/material/InputDecorationTheme-class.html
[`FloatingLabelBehavior`]: {{site.api}}/flutter/material/FloatingLabelBehavior-class.html
[InputDecoration: option to always float label]: {{site.repo.flutter}}/issues/30664
[#46115]: {{site.repo.flutter}}/pull/46115
[#83923]: {{site.repo.flutter}}/pull/83923
---
### `TextTheme`
Supported by Flutter Fix: yes
Several `TextStyle` properties of `TextTheme` were deprecated in v1.13.8. They
are listed in the following table alongside the appropriate replacement in the
new API.
| Deprecation | New API |
|---|---|
| display4 | headline1 |
| display3 | headline2 |
| display2 | headline3 |
| display1 | headline4 |
| headline | headline5 |
| title | headline6 |
| subhead | subtitle1 |
| body2 | bodyText1 |
| body1 | bodyText2 |
| subtitle | subtitle2 |
**Migration guide**
Code before migration:
```dart
// TextTheme
// Base constructor
TextTheme(
display4: displayStyle4,
display3: displayStyle3,
display2: displayStyle2,
display1: displayStyle1,
headline: headlineStyle,
title: titleStyle,
subhead: subheadStyle,
body2: body2Style,
body1: body1Style,
caption: captionStyle,
button: buttonStyle,
subtitle: subtitleStyle,
overline: overlineStyle,
);
// copyWith
TextTheme.copyWith(
display4: displayStyle4,
display3: displayStyle3,
display2: displayStyle2,
display1: displayStyle1,
headline: headlineStyle,
title: titleStyle,
subhead: subheadStyle,
body2: body2Style,
body1: body1Style,
caption: captionStyle,
button: buttonStyle,
subtitle: subtitleStyle,
overline: overlineStyle,
);
// Getters
TextStyle style;
style = textTheme.display4;
style = textTheme.display3;
style = textTheme.display2;
style = textTheme.display1;
style = textTheme.headline;
style = textTheme.title;
style = textTheme.subhead;
style = textTheme.body2;
style = textTheme.body1;
style = textTheme.caption;
style = textTheme.button;
style = textTheme.subtitle;
style = textTheme.overline;
```
Code after migration:
```dart
// TextTheme
// Base constructor
TextTheme(
headline1: displayStyle4,
headline2: displayStyle3,
headline3: displayStyle2,
headline4: displayStyle1,
headline5: headlineStyle,
headline6: titleStyle,
subtitle1: subheadStyle,
bodyText1: body2Style,
bodyText2: body1Style,
caption: captionStyle,
button: buttonStyle,
subtitle2: subtitleStyle,
overline: overlineStyle,
);
TextTheme.copyWith(
headline1: displayStyle4,
headline2: displayStyle3,
headline3: displayStyle2,
headline4: displayStyle1,
headline5: headlineStyle,
headline6: titleStyle,
subtitle1: subheadStyle,
bodyText1: body2Style,
bodyText2: body1Style,
caption: captionStyle,
button: buttonStyle,
subtitle2: subtitleStyle,
overline: overlineStyle,
);
TextStyle style;
style = textTheme.headline1;
style = textTheme.headline2;
style = textTheme.headline3;
style = textTheme.headline4;
style = textTheme.headline5;
style = textTheme.headline6;
style = textTheme.subtitle1;
style = textTheme.bodyText1;
style = textTheme.bodyText2;
style = textTheme.caption;
style = textTheme.button;
style = textTheme.subtitle2;
style = textTheme.overline;
```
**References**
Design document:
* [Update the TextTheme API][]
API documentation:
* [`TextTheme`][]
Relevant issues:
* [Migrate TextTheme to 2018 APIs][]
Relevant PRs:
* Deprecated in [#48547][]
* Removed in [#83924][]
[Update the TextTheme API]: /go/update-text-theme-api
[`TextTheme`]: {{site.api}}/flutter/material/TextTheme-class.html
[Migrate TextTheme to 2018 APIs]: {{site.repo.flutter}}/issues/45745
[#48547]: {{site.repo.flutter}}/pull/48547
[#83924]: {{site.repo.flutter}}/pull/83924
---
### Default `Typography`
Supported by Flutter Fix: no
The default `Typography` was deprecated in v1.13.8.
The prior default returned the text styles of the 2014 Material Design specification.
This will now result in `TextStyle`s reflecting the 2018 Material Design specification.
For the former, use the `material2014` constructor.
**Migration guide**
Code before migration:
```dart
// Formerly returned 2014 TextStyle spec
Typography();
```
Code after migration:
```dart
// Use 2018 TextStyle spec, either by default or explicitly.
Typography();
Typography.material2018();
// Use 2014 spec from former API
Typography.material2014();
```
**References**
Design document:
* [Update the TextTheme API][]
API documentation:
* [`Typography`][]
Relevant issues:
* [Migrate TextTheme to 2018 APIs][]
Relevant PRs:
* Deprecated in [#48547][]
* Removed in [#83924][]
[Update the TextTheme API]: /go/update-text-theme-api
[`Typography`]: {{site.api}}/flutter/material/Typography-class.html
[Migrate TextTheme to 2018 APIs]: {{site.repo.flutter}}/issues/45745
[#48547]: {{site.repo.flutter}}/pull/48547
[#83924]: {{site.repo.flutter}}/pull/83924
---
## Timeline
In stable release: 2.5
| website/src/release/breaking-changes/2-2-deprecations.md/0 | {
"file_path": "website/src/release/breaking-changes/2-2-deprecations.md",
"repo_id": "website",
"token_count": 2528
} | 1,289 |
---
title: Android v1 embedding app and plugin creation deprecation
description: Gradual deprecation of the Android v1 embedding.
---
## Summary
The `flutter create` templates for apps and plugins
no longer create Android wrapping based on the
v1 Android embedding as part of our gradual
Android v1 embedding deprecation process described in our
[Android Migration Summary][].
Application projects using the v1 Android embedding
are encouraged to migrate following the steps described in
[Upgrading pre 1.12 Android projects][].
Plugins targeting the v1 Android embedding are encouraged
to migrate following the instructions in
[Supporting the new Android plugins APIs][].
[Android Migration Summary]: /go/android-migration-summary
[Upgrading pre 1.12 Android projects]: {{site.repo.flutter}}/wiki/Upgrading-pre-1.12-Android-projects
[Supporting the new Android plugins APIs]: /release/breaking-changes/plugin-api-migration
## Context
In Flutter version 1.12, we launched a v2 set of
Android APIs based on the [`io.flutter.embedding`][]
package in order to enable the [add-to-app][] workflow
on Android.
Over time, we gradually deprecated the older
v1 Android embeddings based on the
[`io.flutter.app`][] package.
As of Q2 2020, only 26% of applications used the v1 embeddings.
Since the v2 embeddings were strongly established over
the 7 months since the launch of Flutter v1.12,
we disabled the creation of new app and plugin
projects using the v1 embeddings.
[add-to-app]: /add-to-app
[`io.flutter.embedding`]: https://cs.opensource.google/flutter/engine/+/master:shell/platform/android/io/flutter/embedding/
[`io.flutter.app`]: https://cs.opensource.google/flutter/engine/+/master:shell/platform/android/io/flutter/app/.
## Description of change
The `flutter config` command no longer has a
toggleable `enable-android-embedding-v2`
flag (which defaulted to true since v1.12).
All projects created with `flutter create`
and `flutter create -t plugin` exclusively use the
Android v2 embedding.
Existing v1 applications continue to work.
Existing v1 applications consuming plugins now receive
a warning prompt to migrate to v2 embedding.
Existing v1 applications consuming a plugin that targets
only the v2 embedding won't build and must migrate.
This has been the case since v1.12. However,
the likelihood of encountering this increases as
plugin developers create and publish v2 only plugins.
Existing v2 applications continue to work with or without
plugins.
Existing v2 applications consuming plugins that only
target the v1 embedding continue to receive a warning prompt.
The likelihood of encountering this decreases
as plugin developers create and publish v2 plugins.
## Migration guide
For more information,
see [Upgrading pre 1.12 Android projects][].
## Timeline
Landed in version: 1.20.0-8.0<br>
In stable release: 1.22
| website/src/release/breaking-changes/android-v1-embedding-create-deprecation.md/0 | {
"file_path": "website/src/release/breaking-changes/android-v1-embedding-create-deprecation.md",
"repo_id": "website",
"token_count": 775
} | 1,290 |
---
title: New Buttons and Button Themes
description: The basic material button classes have been replaced.
---
## Summary
A new set of basic material button widgets and themes have been added
to Flutter. The original classes have been deprecated and will
eventually be removed. The overall goal is to make buttons more
flexible, and easier to configure via constructor parameters or
themes.
The `FlatButton`, `RaisedButton` and `OutlineButton` widgets have been
replaced by `TextButton`, `ElevatedButton`, and `OutlinedButton`
respectively. Each new button class has its own theme:
`TextButtonTheme`, `ElevatedButtonTheme`, and
`OutlinedButtonTheme`. The original `ButtonTheme` class is no longer
used. The appearance of buttons is specified by a `ButtonStyle`
object, instead of a large set of widget parameters and
properties. This is roughly comparable to the way that the appearance
of text is defined with a `TextStyle` object. The new button themes
are also configured with a `ButtonStyle` object. A `ButtonStyle` is
itself just a collection of visual properties. Many of these
properties are defined with `MaterialStateProperty`, which means that
their value can depend on the button's state.
## Context
Rather than try and evolve the existing button classes and their theme
in-place, we have introduced new replacement button widgets and
themes. In addition to freeing us from the backwards compatibility
labyrinth that evolving the existing classes in-place would entail,
the new names sync Flutter back up with the Material Design spec,
which uses the new names for the button components.
<div class="table-wrapper" markdown="1">
| Old Widget | Old Theme | New Widget | New Theme |
|-----------------|---------------|------------------|-----------------------|
| `FlatButton` | `ButtonTheme` | `TextButton` | `TextButtonTheme` |
| `RaisedButton` | `ButtonTheme` | `ElevatedButton` | `ElevatedButtonTheme` |
| `OutlineButton` | `ButtonTheme` | `OutlinedButton` | `OutlinedButtonTheme` |
{:.table .table-striped .nowrap}
</div>
The new themes follow the "normalized" pattern that Flutter adopted
for new Material widgets about a year ago. Theme properties and widget
constructor parameters are null by default. Non-null theme properties
and widget parameters specify an override of the component's default
value. Implementing and documenting default values is the sole
responsibility of the button component widgets. The defaults
themselves are based primarily on the overall Theme's colorScheme and
textTheme.
Visually, the new buttons look a little different, because they match
the current Material Design spec and because their colors are
configured in terms of the overall Theme's ColorScheme. There are
other small differences in padding, rounded corner radii, and the
hover/focus/pressed feedback.
Many applications will be able to just substitute the new class names
for the old ones. Apps with golden image tests or with buttons whose
appearance has been configured with constructor parameters or with the
original `ButtonTheme` may need to consult the migration guide and the
introductory material that follows.
## API Change: ButtonStyle instead of individual style properties
Except for simple use cases, the APIs of the new button classes are
not compatible with the old classes. The visual attributes of the new
buttons and themes are configured with a single `ButtonStyle` object,
similar to how a `TextField` or a `Text` widget can be configured with a
`TextStyle` object. Most of the `ButtonStyle` properties are defined with
`MaterialStateProperty`, so that a single property can represent
different values depending on the button's pressed/focused/hovered/etc
state.
A button's `ButtonStyle` doesn't define the button's visual properties,
it defines overrides of the buttons default visual properties,
where the default properties are computed by the button widget
itself. For example, to override a `TextButton`'s default foreground
(text/icon) color for all states, one could write:
```dart
TextButton(
style: ButtonStyle(
foregroundColor: MaterialStateProperty.all<Color>(Colors.blue),
),
onPressed: () { },
child: Text('TextButton'),
)
```
This kind of override is common; however, in many cases what's also
needed are overrides for the overlay colors that the text button uses
to indicate its hovered/focus/pressed state. This can be done by
adding the `overlayColor` property to the `ButtonStyle`.
```dart
TextButton(
style: ButtonStyle(
foregroundColor: MaterialStateProperty.all<Color>(Colors.blue),
overlayColor: MaterialStateProperty.resolveWith<Color?>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.hovered))
return Colors.blue.withOpacity(0.04);
if (states.contains(MaterialState.focused) ||
states.contains(MaterialState.pressed))
return Colors.blue.withOpacity(0.12);
return null; // Defer to the widget's default.
},
),
),
onPressed: () { },
child: Text('TextButton')
)
```
A color `MaterialStateProperty` only needs to return a value for the
colors whose default should be overridden. If it returns null, the
widget's default will be used instead. For example, to just override
the text button's focus overlay color:
```dart
TextButton(
style: ButtonStyle(
overlayColor: MaterialStateProperty.resolveWith<Color?>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.focused))
return Colors.red;
return null; // Defer to the widget's default.
}
),
),
onPressed: () { },
child: Text('TextButton'),
)
```
### The `styleFrom()` ButtonStyle utility methods
The Material Design spec defines buttons' foreground and overlay colors in
terms of the color scheme's primary color. The primary color is
rendered at different opacities, depending on the button's state. To
simplify creating a button style that includes all of the properties
that depend on color scheme colors, each button class includes a
static styleFrom() method which constructs a `ButtonStyle` from a simple
set of values, including the `ColorScheme` colors it depends on.
This example creates a button that overrides its foreground color, as
well as its overlay color, using the specified primary color and the
opacities from the Material Design spec.
```dart
TextButton(
style: TextButton.styleFrom(
primary: Colors.blue,
),
onPressed: () { },
child: Text('TextButton'),
)
```
The `TextButton` documentation indicates that the foreground color when
the button is disabled is based on the color scheme's `onSurface`
color. To override that as well, using styleFrom():
```dart
TextButton(
style: TextButton.styleFrom(
primary: Colors.blue,
onSurface: Colors.red,
),
onPressed: null,
child: Text('TextButton'),
)
```
Using the `styleFrom()` method is the preferred way to create a
`ButtonStyle` if you're trying to create a Material Design
variation. The most flexible approach is defining a `ButtonStyle`
directly, with `MaterialStateProperty` values for the states whose
appearance you want to override.
## ButtonStyle defaults
Widgets like the new button classes _compute_ their default values
based on the overall theme's `colorScheme` and `textTheme` as well as
button's current state. In a few cases they also consider if the
overall theme's color scheme is light or dark. Each button has a
protected method that computes its default style as needed. Although
apps won't call this method directly, its API doc explains what all
of the defaults are. When a button or button theme specifies
`ButtonStyle`, only the button style's non-null properties override the
computed defaults. The button's `style` parameter overrides non-null
properties specified by the corresponding button theme. For example if
`foregroundColor` property of a `TextButton`'s style is non-null, it
overrides the same property for the `TextButonTheme`'s style.
As explained earlier, each button class includes a static method
called `styleFrom` which constructs a ButtonStyle from a simple set of
values, including the `ColorScheme` colors it depends on. In many common
cases, using `styleFrom` to create a one-off `ButtonStyle` that
overrides the defaults, is simplest. This is particularly true when
the custom style's objective is to override one of the color scheme
colors, like `primary` or `onPrimary` that the default style depends
on. For other cases you can create a `ButtonStyle` object
directly. Doing so enables you to control the value of visual
properties, like colors, for all of the button's possible states -
like pressed, hovered, disabled, and focused.
## Migration guide
Use the following information to migrate your buttons to the
new API.
### Restoring the original button visuals
In many cases it's possible to just switch from the old button class
to the new one. That's assuming that the small changes in size/shape
and the likely bigger change in colors, aren't a concern.
To preserve the original buttons' appearance in these cases, one can
define button styles that match the original as closely as you
like. For example, the following style makes a `TextButton` look
like a default `FlatButton`:
```dart
final ButtonStyle flatButtonStyle = TextButton.styleFrom(
primary: Colors.black87,
minimumSize: Size(88, 36),
padding: EdgeInsets.symmetric(horizontal: 16),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(2)),
),
);
TextButton(
style: flatButtonStyle,
onPressed: () { },
child: Text('Looks like a FlatButton'),
)
```
Similarly, to make an `ElevatedButton` look like a default `RaisedButton`:
```dart
final ButtonStyle raisedButtonStyle = ElevatedButton.styleFrom(
onPrimary: Colors.black87,
primary: Colors.grey[300],
minimumSize: Size(88, 36),
padding: EdgeInsets.symmetric(horizontal: 16),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(2)),
),
);
ElevatedButton(
style: raisedButtonStyle,
onPressed: () { },
child: Text('Looks like a RaisedButton'),
)
```
The `OutlineButton` style for `OutlinedButton` is a little more
complicated because the outline's color changes to the primary color
when the button is pressed. The outline's appearance is defined by a
`BorderSide` and you'll use a `MaterialStateProperty` to define the pressed
outline color:
```dart
final ButtonStyle outlineButtonStyle = OutlinedButton.styleFrom(
primary: Colors.black87,
minimumSize: Size(88, 36),
padding: EdgeInsets.symmetric(horizontal: 16),
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(2)),
),
).copyWith(
side: MaterialStateProperty.resolveWith<BorderSide>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.pressed))
return BorderSide(
color: Theme.of(context).colorScheme.primary,
width: 1,
);
return null; // Defer to the widget's default.
},
),
);
OutlinedButton(
style: outlineButtonStyle,
onPressed: () { },
child: Text('Looks like an OutlineButton'),
)
```
To restore the default appearance for buttons throughout an
application, you can configure the new button themes in the
application's theme:
```dart
MaterialApp(
theme: ThemeData.from(colorScheme: ColorScheme.light()).copyWith(
textButtonTheme: TextButtonThemeData(style: flatButtonStyle),
elevatedButtonTheme: ElevatedButtonThemeData(style: raisedButtonStyle),
outlinedButtonTheme: OutlinedButtonThemeData(style: outlineButtonStyle),
),
)
```
To restore the default appearance for buttons in part of an
application you can wrap a widget subtree with `TextButtonTheme`,
`ElevatedButtonTheme`, or `OutlinedButtonTheme`. For example:
```dart
TextButtonTheme(
data: TextButtonThemeData(style: flatButtonStyle),
child: myWidgetSubtree,
)
```
### Migrating buttons with custom colors
The following sections cover use of the following `FlatButton`,
`RaisedButton`, and `OutlineButton` color parameters:
```dart
textColor
disabledTextColor
color
disabledColor
focusColor
hoverColor
highlightColor*
splashColor
```
The new button classes do not support a separate highlight color
because it's no longer part of the Material Design.
#### Migrating buttons with custom foreground and background colors
Two common customizations for the original button classes are a custom
foreground color for `FlatButton`, or custom foreground and background
colors for `RaisedButton`. Producing the same result with the new
button classes is simple:
```dart
FlatButton(
textColor: Colors.red, // foreground
onPressed: () { },
child: Text('FlatButton with custom foreground/background'),
)
TextButton(
style: TextButton.styleFrom(
primary: Colors.red, // foreground
),
onPressed: () { },
child: Text('TextButton with custom foreground'),
)
```
In this case the `TextButton`'s foreground (text/icon) color as well as
its hovered/focused/pressed overlay colors will be based on
`Colors.red`. By default, the `TextButton`'s background fill color is
transparent.
Migrating a `RaisedButton` with custom foreground and background colors:
```dart
RaisedButton(
color: Colors.red, // background
textColor: Colors.white, // foreground
onPressed: () { },
child: Text('RaisedButton with custom foreground/background'),
)
ElevatedButton(
style: ElevatedButton.styleFrom(
primary: Colors.red, // background
onPrimary: Colors.white, // foreground
),
onPressed: () { },
child: Text('ElevatedButton with custom foreground/background'),
)
```
In this case the button's use of the color scheme's primary color is
reversed relative to the `TextButton`: primary is button's background
fill color and `onPrimary` is the foreground (text/icon) color.
#### Migrating buttons with custom overlay colors
Overriding a button's default focused, hovered, highlighted, or splash
colors is less common. The `FlatButton`, `RaisedButton`, and `OutlineButton`
classes have individual parameters for these state-dependent
colors. The new `TextButton`, `ElevatedButton`, and `OutlinedButton` classes
use a single `MaterialStateProperty<Color>` parameter instead. The new
buttons allow one to specify state-dependent values for all of the
colors, the original buttons only supported specifying what's now
called the "overlayColor".
```dart
FlatButton(
focusColor: Colors.red,
hoverColor: Colors.green,
splashColor: Colors.blue,
onPressed: () { },
child: Text('FlatButton with custom overlay colors'),
)
TextButton(
style: ButtonStyle(
overlayColor: MaterialStateProperty.resolveWith<Color?>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.focused))
return Colors.red;
if (states.contains(MaterialState.hovered))
return Colors.green;
if (states.contains(MaterialState.pressed))
return Colors.blue;
return null; // Defer to the widget's default.
}),
),
onPressed: () { },
child: Text('TextButton with custom overlay colors'),
)
```
The new version is more flexible although less compact. In the
original version, the precedence of the different states is
implicit (and undocumented) and fixed, in the new version, it's
explicit. For an app that specified these colors frequently, the
easiest migration path would be to define one or more `ButtonStyles`
that match the example above - and just use the style parameter - or
to define a stateless wrapper widget that encapsulated the three color
parameters.
#### Migrating buttons with custom disabled colors
This is a relatively rare customization. The `FlatButton`,
`RaisedButton`, and `OutlineButton` classes have `disabledTextColor` and
`disabledColor` parameters that define the background and foreground
colors when the button's `onPressed` callback is null.
By default, all of the buttons use the color scheme's `onSurface` color,
with opacity 0.38 for the disabled foreground color. Only
`ElevatedButton` has a non-transparent background color and its default
value is the `onSurface` color with opacity 0.12. So in many cases one
can just use the `styleFrom` method to override the disabled colors:
```dart
RaisedButton(
disabledColor: Colors.red.withOpacity(0.12),
disabledTextColor: Colors.red.withOpacity(0.38),
onPressed: null,
child: Text('RaisedButton with custom disabled colors'),
),
ElevatedButton(
style: ElevatedButton.styleFrom(onSurface: Colors.red),
onPressed: null,
child: Text('ElevatedButton with custom disabled colors'),
)
```
For complete control over the disabled colors, one must define the
`ElevatedButton`'s style explicitly, in terms of
`MaterialStateProperties`:
```dart
RaisedButton(
disabledColor: Colors.red,
disabledTextColor: Colors.blue,
onPressed: null,
child: Text('RaisedButton with custom disabled colors'),
)
ElevatedButton(
style: ButtonStyle(
backgroundColor: MaterialStateProperty.resolveWith<Color?>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.disabled))
return Colors.red;
return null; // Defer to the widget's default.
}),
foregroundColor: MaterialStateProperty.resolveWith<Color?>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.disabled))
return Colors.blue;
return null; // Defer to the widget's default.
}),
),
onPressed: null,
child: Text('ElevatedButton with custom disabled colors'),
)
```
As with the previous case, there are obvious ways to make the new
version more compact in an app where this migration comes up often.
#### Migrating buttons with custom elevations
This is also a relatively rare customization. Typically, only
`ElevatedButton`s (originally called `RaisedButtons`)
include elevation changes. For elevations that are proportional
to a baseline elevation (per the Material Design specification),
one can override all of them quite simply.
By default, a disabled button's elevation is 0, and the remaining
states are defined relative to a baseline of 2:
```dart
disabled: 0
hovered or focused: baseline + 2
pressed: baseline + 6
```
So to migrate a `RaisedButton` for which all elevations have been
defined:
```dart
RaisedButton(
elevation: 2,
focusElevation: 4,
hoverElevation: 4,
highlightElevation: 8,
disabledElevation: 0,
onPressed: () { },
child: Text('RaisedButton with custom elevations'),
)
ElevatedButton(
style: ElevatedButton.styleFrom(elevation: 2),
onPressed: () { },
child: Text('ElevatedButton with custom elevations'),
)
```
To arbitrarily override just one elevation, like the pressed
elevation:
```dart
RaisedButton(
highlightElevation: 16,
onPressed: () { },
child: Text('RaisedButton with a custom elevation'),
)
ElevatedButton(
style: ButtonStyle(
elevation: MaterialStateProperty.resolveWith<double?>(
(Set<MaterialState> states) {
if (states.contains(MaterialState.pressed))
return 16;
return null;
}),
),
onPressed: () { },
child: Text('ElevatedButton with a custom elevation'),
)
```
#### Migrating buttons with custom shapes and borders
The original `FlatButton`, `RaisedButton`, and `OutlineButton` classes all
provide a shape parameter which defines both the button's shape and
the appearance of its outline. The corresponding new classes and their
themes support specifying the button's shape and its border
separately, with `OutlinedBorder shape` and `BorderSide side` parameters.
In this example the original `OutlineButton` version specifies the same
color for border in its highlighted (pressed) state as for other
states.
```dart
OutlineButton(
shape: StadiumBorder(),
highlightedBorderColor: Colors.red,
borderSide: BorderSide(
width: 2,
color: Colors.red
),
onPressed: () { },
child: Text('OutlineButton with custom shape and border'),
)
OutlinedButton(
style: OutlinedButton.styleFrom(
shape: StadiumBorder(),
side: BorderSide(
width: 2,
color: Colors.red
),
),
onPressed: () { },
child: Text('OutlinedButton with custom shape and border'),
)
```
Most of the new `OutlinedButton` widget's style parameters, including
its shape and border, can be specified with `MaterialStateProperty`
values, which is to say that they can have different values depending
on the button's state. To specify a different border color when the
button is pressed, do the following:
```dart
OutlineButton(
shape: StadiumBorder(),
highlightedBorderColor: Colors.blue,
borderSide: BorderSide(
width: 2,
color: Colors.red
),
onPressed: () { },
child: Text('OutlineButton with custom shape and border'),
)
OutlinedButton(
style: ButtonStyle(
shape: MaterialStateProperty.all<OutlinedBorder>(StadiumBorder()),
side: MaterialStateProperty.resolveWith<BorderSide>(
(Set<MaterialState> states) {
final Color color = states.contains(MaterialState.pressed)
? Colors.blue
: Colors.red;
return BorderSide(color: color, width: 2);
}
),
),
onPressed: () { },
child: Text('OutlinedButton with custom shape and border'),
)
```
## Timeline
Landed in version: 1.20.0-0.0.pre<br>
In stable release: 2.0.0
## References
API documentation:
* [`ButtonStyle`][]
* [`ButtonStyleButton`][]
* [`ElevatedButton`][]
* [`ElevatedButtonTheme`][]
* [`ElevatedButtonThemeData`][]
* [`OutlinedButton`][]
* [`OutlinedButtonTheme`][]
* [`OutlinedButtonThemeData`][]
* [`TextButton`][]
* [`TextButtonTheme`][]
* [`TextButtonThemeData`][]
Relevant PRs:
* [PR 59702: New Button Universe][]
* [PR 73352: Deprecated obsolete Material classes: FlatButton, RaisedButton, OutlineButton][]
[`ButtonStyle`]: {{site.api}}/flutter/material/ButtonStyle-class.html
[`ButtonStyleButton`]: {{site.api}}/flutter/material/ButtonStyleButton-class.html
[`ElevatedButton`]: {{site.api}}/flutter/material/ElevatedButton-class.html
[`ElevatedButtonTheme`]: {{site.api}}/flutter/material/ElevatedButtonTheme-class.html
[`ElevatedButtonThemeData`]: {{site.api}}/flutter/material/ElevatedButtonThemeData-class.html
[`OutlinedButton`]: {{site.api}}/flutter/material/OutlinedButton-class.html
[`OutlinedButtonTheme`]: {{site.api}}/flutter/material/OutlinedButtonTheme-class.html
[`OutlinedButtonThemeData`]: {{site.api}}/flutter/material/OutlinedButtonThemeData-class.html
[`TextButton`]: {{site.api}}/flutter/material/TextButton-class.html
[`TextButtonTheme`]: {{site.api}}/flutter/material/TextButtonTheme-class.html
[`TextButtonThemeData`]: {{site.api}}/flutter/material/TextButtonThemeData-class.html
[PR 59702: New Button Universe]: {{site.repo.flutter}}/pull/59702
[PR 73352: Deprecated obsolete Material classes: FlatButton, RaisedButton, OutlineButton]: {{site.repo.flutter}}/pull/73352
| website/src/release/breaking-changes/buttons.md/0 | {
"file_path": "website/src/release/breaking-changes/buttons.md",
"repo_id": "website",
"token_count": 6680
} | 1,291 |
---
title: TextField FocusNode attach location change
description: >
EditableText.focusNode is no longer attached to
EditableTextState's BuildContext.
---
## Summary
`EditableText.focusNode` is now attached to
a dedicated `Focus` widget below `EditableText`.
## Context
A text input field widget (`TextField`, for example)
typically owns a `FocusNode`.
When that `FocusNode` is the primary focus of the app,
events (such as key presses) are sent to the `BuildContext`
to which the `FocusNode` is attached.
The `FocusNode` also plays a roll in shortcut handling:
The `Shortcuts` widget translates key sequences into an `Intent`, and
tries to find the first suitable handler for that `Intent` starting from
the `BuildContext` to which the `FocusNode` is attached, to
the root of the widget tree. This means an `Actions` widget (that provides
handlers for different `Intent`s) won't be able to
handle any shortcut `Intent`s when the `BuildContext` that
has the primary focus is above it in the tree.
Previously for `EditableText`, the `FocusNode` was attached to
the `BuildContext` of `EditableTextState`.
Any `Actions` widgets defined in `EditableTextState` (which will be inflated
below the `BuildContext` of the `EditableTextState`) couldn't handle
shortcuts even when that `EditableText` was focused, for
the reason stated above.
## Description of change
`EditableTextState` now creates a dedicated `Focus` widget to
host `EditableText.focusNode`.
This allows `EditableTextState`s to define handlers for shortcut `Intent`s.
For instance, `EditableText` now has a handler that
handles the "deleteCharacter" intent
when the <kbd>DEL</kbd> key is pressed.
This change does not involve any public API changes but
breaks codebases relying on that particular implementation detail to
tell if a `FocusNode` is associated with a text input field.
This change does not break any builds but can introduce runtime issues, or
cause existing tests to fail.
## Migration guide
The `EditableText` widget takes a `FocusNode` as a parameter, which was
previously attached to its `EditableText`'s `BuildContext`. If you are relying
on runtime typecheck to find out if a `FocusNode` is attached to a text input
field or a selectable text field like so:
- `focusNode.context.widget is EditableText`
- `(focusNode.context as StatefulElement).state as EditableTextState`
Then please read on and consider following the migration steps to avoid breakages.
If you're not sure whether a codebase needs migration,
search for `is EditableText`, `as EditableText`, `is EditableTextState`, and
`as EditableTextState` and verify if any of the search results are doing
a typecheck or typecast on a `FocusNode.context`.
If so, then migration is needed.
To avoid performing a typecheck, or downcasting
the `BuildContext` associated with the `FocusNode` of interest, and
depending on the actual capabilities the codebase is trying to
invoke from the given `FocusNode`, fire an `Intent` from that `BuildContext`.
For instance, if you wish to update the text of the currently focused
`TextField` to a specific value, see the following example:
Code before migration:
```dart
final Widget? focusedWidget = primaryFocus?.context?.widget;
if (focusedWidget is EditableText) {
widget.controller.text = 'Updated Text';
}
```
Code after migration:
```dart
final BuildContext? focusedContext = primaryFocus?.context;
if (focusedContext != null) {
Actions.maybeInvoke(focusedContext, ReplaceTextIntent('UpdatedText'));
}
```
For a comprehensive list of `Intent`s supported by the `EditableText` widget,
refer to the documentation of the `EditableText` widget.
## Timeline
Landed in version: 2.6.0-12.0.pre<br>
In stable release: 2.10.0
## References
API documentation:
* [`EditableText`][]
Relevant PR:
* [Move text editing Actions to EditableTextState][]
[`EditableText`]: {{site.api}}/flutter/widgets/EditableText-class.html
[Move text editing Actions to EditableTextState]: {{site.repo.flutter}}/pull/90684
| website/src/release/breaking-changes/editable-text-focus-attachment.md/0 | {
"file_path": "website/src/release/breaking-changes/editable-text-focus-attachment.md",
"repo_id": "website",
"token_count": 1104
} | 1,292 |
---
title: ImageCache large images
description: >
Stop increasing the ImageCache maxByteSize to accommodate large images.
---
## Summary
The `maxByteSize` of the `ImageCache` is no longer
automatically made larger to accommodate large images.
## Context
Previously, when loading images into the `ImageCache`
that had larger byte sizes than the `ImageCache`'s `maxByteSize`,
Flutter permanently increased the `maxByteSize` value
to accommodate those images.
This logic sometimes led to bloated `maxByteSize` values that
made working in memory-limited systems more difficult.
## Description of change
The following "before" and "after" pseudocode demonstrates
the changes made to the `ImageCache` algorithm:
```dart
// Old logic pseudocode
void onLoadImage(Image image) {
if (image.byteSize > _cache.maxByteSize) {
_cache.maxByteSize = image.byteSize + 1000;
}
_cache.add(image);
while (_cache.count > _cache.maxCount
|| _cache.byteSize > _cache.maxByteSize) {
_cache.discardOldestImage();
}
}
```
```dart
// New logic pseudocode
void onLoadImage(Image image) {
if (image.byteSize < _cache.maxByteSize) {
_cache.add(image);
while (_cache.count > _cache.maxCount
|| _cache.byteSize > cache.maxByteSize) {
cache.discardOldestImage();
}
}
}
```
## Migration guide
There might be situations where the `ImageCache`
is thrashing with the new logic where it wasn't previously,
specifically if you load images that are larger than your
`cache.maxByteSize` value.
This can be remedied by one of the following approaches:
1. Increase the `ImageCache.maxByteSize` value
to accommodate larger images.
1. Adjust your image loading logic to guarantee that
the images fit nicely into the `ImageCache.maxByteSize`
value of your choosing.
1. Subclass `ImageCache`, implement your desired logic,
and create a new binding that serves up your subclass
of `ImageCache` (see the [`image_cache.dart`][] source).
## Timeline
The old algorithm is no longer supported.
Landed in version: 1.16.3<br>
In stable release: 1.17
## References
API documentation:
* [`ImageCache`][]
Relevant issue:
* [Issue 45643][]
Relevant PR:
* [Stopped increasing the cache size to accommodate large images][]
Other:
* [`ImageCache` source][]
[Stopped increasing the cache size to accommodate large images]: {{site.repo.flutter}}/pull/47387
[`ImageCache`]: {{site.api}}/flutter/painting/ImageCache-class.html
[`image_cache.dart`]: {{site.repo.flutter}}/blob/72a3d914ee5db0033332711224e728b8a5281d89/packages/flutter/lib/src/painting/image_cache.dart#L34
[`ImageCache` source]: {{site.repo.flutter}}/blob/master/packages/flutter/lib/src/painting/image_cache.dart
[Issue 45643]: {{site.repo.flutter}}/issues/45643
| website/src/release/breaking-changes/imagecache-large-images.md/0 | {
"file_path": "website/src/release/breaking-changes/imagecache-large-images.md",
"repo_id": "website",
"token_count": 881
} | 1,293 |
---
title: Default multitouch scrolling
description: >
ScrollBehaviors will now configure how Scrollables respond to
multitouch gestures.
---
## Summary
`ScrollBehavior`s now allow or disallow scrolling speeds to be affected by the
number of pointers on the screen. `ScrollBehavior.multitouchDragStrategy`, by
default, prevents multiple pointers interacting wih the scrollable at the same
time from affecting the speed of scrolling.
## Context
Prior to this change, for each pointer dragging a `Scrollable` widget, the
scroll speed would increase. This did not match platform expectations when
interacting with Flutter applications.
Now, the inherited `ScrollBehavior` manages how multiple pointers affect
scrolling widgets as specified by `ScrollBehavior.multitouchDragStrategy`. This
enum, `MultitouchDragStrategy`, can also be configured for the prior behavior.
## Description of change
This change fixed the unexpected ability to increase scroll speeds by dragging
with more than one finger.
If you have relied on the previous behavior in your application, there are
several ways to control and configure this feature.
- Extend `ScrollBehavior`, `MaterialScrollBehavior`, or `CupertinoScrollBehavior`
to modify the default behavior, overriding
`ScrollBehavior.multitouchDragStrategy`.
- With your own `ScrollBehavior`, you can apply it app-wide by setting
`MaterialApp.scrollBehavior` or `CupertinoApp.scrollBehavior`.
- Or, if you wish to only apply it to specific widgets, add a
`ScrollConfiguration` above the widget in question with your
custom `ScrollBehavior`.
Your scrollable widgets then inherit and reflect this behavior.
- Instead of creating your own `ScrollBehavior`, another option for changing
the default behavior is to copy the existing `ScrollBehavior`, and set different
`multitouchDragStrategy`.
- Create a `ScrollConfiguration` in your widget tree, and provide a modified copy
of the existing `ScrollBehavior` in the current context using `copyWith`.
To accommodate the new configuration
`DragGestureRecognizer` was updated to support `MultitouchDragStrategy` as well
in other dragging contexts.
## Migration guide
### Setting a custom `ScrollBehavior` for your application
Code before migration:
```dart
MaterialApp(
// ...
);
```
Code after migration:
```dart
class MyCustomScrollBehavior extends MaterialScrollBehavior {
// Override behavior methods and getters like multitouchDragStrategy
@override
MultitouchDragStrategy get multitouchDragStrategy => MultitouchDragStrategy.sumAllPointers;
}
// Set ScrollBehavior for an entire application.
MaterialApp(
scrollBehavior: MyCustomScrollBehavior(),
// ...
);
```
### Setting a custom `ScrollBehavior` for a specific widget
Code before migration:
```dart
final ScrollController controller = ScrollController();
ListView.builder(
controller: controller,
itemBuilder: (BuildContext context, int index) {
return Text('Item $index');
},
);
```
Code after migration:
```dart
class MyCustomScrollBehavior extends MaterialScrollBehavior {
// Override behavior methods and getters like multitouchDragStrategy
@override
MultitouchDragStrategy get multitouchDragStrategy => MultitouchDragStrategy.sumAllPointers;
}
// ScrollBehavior can be set for a specific widget.
final ScrollController controller = ScrollController();
ScrollConfiguration(
behavior: MyCustomScrollBehavior(),
child: ListView.builder(
controller: controller,
itemBuilder: (BuildContext context, int index) {
return Text('Item $index');
},
),
);
```
### Copy and modify existing `ScrollBehavior`
Code before migration:
```dart
final ScrollController controller = ScrollController();
ListView.builder(
controller: controller,
itemBuilder: (BuildContext context, int index) {
return Text('Item $index');
},
);
```
Code after migration:
```dart
// ScrollBehavior can be copied and adjusted.
final ScrollController controller = ScrollController();
ScrollConfiguration(
behavior: ScrollConfiguration.of(context).copyWith(
multitouchDragStrategy: MultitouchDragStrategy.sumAllPointers,
),
child: ListView.builder(
controller: controller,
itemBuilder: (BuildContext context, int index) {
return Text('Item $index');
},
),
);
```
## Timeline
Landed in version: 3.18.0-4.0.pre<br>
In stable release: 3.19.0
## References
API documentation:
* [`ScrollConfiguration`][]
* [`ScrollBehavior`][]
* [`MaterialScrollBehavior`][]
* [`CupertinoScrollBehavior`][]
* [`MultitouchDragStrategy`][]
* [`DragGestureRecognizer`][]
Relevant issue:
* [Issue #11884][]
Relevant PRs:
* [Introduce multi-touch drag strategies for DragGestureRecognizer][]
[`ScrollConfiguration`]: {{site.api}}/flutter/widgets/ScrollConfiguration-class.html
[`ScrollBehavior`]: {{site.api}}/flutter/widgets/ScrollBehavior-class.html
[`MaterialScrollBehavior`]: {{site.api}}/flutter/material/MaterialScrollBehavior-class.html
[`CupertinoScrollBehavior`]: {{site.api}}/flutter/cupertino/CupertinoScrollBehavior-class.html
[`MultitouchDragStrategy`]: {{site.api}}/flutter/gestures/MultitouchDragStrategy.html
[`DragGestureRecognizer`]: {{site.api}}/flutter/gestures/DragGestureRecognizer-class.html
[Issue #11884]: {{site.repo.flutter}}/issues/11884
[Introduce multi-touch drag strategies for DragGestureRecognizer]: {{site.repo.flutter}}/pull/136708
| website/src/release/breaking-changes/multi-touch-scrolling.md/0 | {
"file_path": "website/src/release/breaking-changes/multi-touch-scrolling.md",
"repo_id": "website",
"token_count": 1554
} | 1,294 |
---
title: Migration guide for `RouteInformation.location`
description: Deprecation of `RouteInformation.location` and its related APIs.
---
## Summary
`RouteInformation.location` and related APIs were deprecated
in the favor of `RouteInformation.uri`.
## Context
The [`RouteInformation`][] needs the authority information to
handle mobile deeplinks from different web domains.
The `uri` field was added to `RouteInformation` that captures
the entire deeplink information and route-related parameters
were converted to the full [`Uri`][] format.
This led to deprecation of incompatible APIs.
## Description of change
* The `RouteInformation.location` was replaced by `RouteInformation.uri`.
* The `WidgetBindingObserver.didPushRoute` was deprecated.
* The `location` parameter of `SystemNavigator.routeInformationUpdated` was
replaced by the newly added `uri` parameter.
## Migration guide
Code before migration:
```dart
const RouteInformation myRoute = RouteInformation(location: '/myroute');
```
Code after migration:
```dart
final RouteInformation myRoute = RouteInformation(uri: Uri.parse('/myroute'));
```
Code before migration:
```dart
final String myPath = myRoute.location;
```
Code after migration:
```dart
final String myPath = myRoute.uri.path;
```
Code before migration:
```dart
class MyObserverState extends State<MyWidget> with WidgetsBindingObserver {
@override
Future<bool> didPushRoute(String route) => _handleRoute(route);
}
```
Code after migration:
```dart
class MyObserverState extends State<MyWidget> with WidgetsBindingObserver {
@override
Future<bool> didPushRouteInformation(RouteInformation routeInformation) => _handleRoute(
Uri.decodeComponent(
Uri(
path: uri.path.isEmpty ? '/' : uri.path,
queryParameters: uri.queryParametersAll.isEmpty ? null : uri.queryParametersAll,
fragment: uri.fragment.isEmpty ? null : uri.fragment,
).toString(),
)
);
}
```
Code before migration:
```dart
SystemNavigator.routeInformationUpdated(location: '/myLocation');
```
Code after migration:
```dart
SystemNavigator.routeInformationUpdated(uri: Uri.parse('/myLocation'));
```
## Timeline
Landed in version: 3.10.0-13.0.pre<br>
In stable release: 3.13.0
## References
Relevant PRs:
* [PR 119968][]: Implement url support for
RouteInformation and didPushRouteInformation.
[PR 119968]: {{site.repo.flutter}}/pull/119968
[`RouteInformation`]: {{site.api}}/flutter/widgets/RouteInformation-class.html
[`Uri`]: {{site.api}}/flutter/dart-core/Uri-class.html
| website/src/release/breaking-changes/route-information-uri.md/0 | {
"file_path": "website/src/release/breaking-changes/route-information-uri.md",
"repo_id": "website",
"token_count": 798
} | 1,295 |
---
title: TextField requires a MaterialLocalizations widget
description: >
TextField now throws an assert error if there is
no MaterialLocalizations widget in the widget tree.
---
## Summary
Instances of `TextField` must have a
`MaterialLocalizations` present in the widget tree.
Trying to instantiate a `TextField` without the proper localizations
results in an assertion such as the following:
```nocode
No MaterialLocalizations found.
TextField widgets require MaterialLocalizations to be provided by a Localizations widget ancestor.
The material library uses Localizations to generate messages, labels, and abbreviations.
To introduce a MaterialLocalizations, either use a MaterialApp at the root of your application to
include them automatically, or add a Localization widget with a MaterialLocalizations delegate.
The specific widget that could not find a MaterialLocalizations ancestor was:
TextField
```
## Context
If the `TextField` descends from a `MaterialApp`, the
`DefaultMaterialLocalizations` is already instantiated
and won't require any changes to your existing code.
If the `TextField` doesn't descend from `MaterialApp`,
you can use a `Localizations` widget to
provide your own localizations.
## Migration guide
If you see an assertion error, make sure that
locale information is available to the `TextField`,
either through an ancestor `MaterialApp`
(that automatically provides `Localizations`), or
by creating your own `Localizations` widget.
Code before migration:
```dart
import 'package:flutter/material.dart';
void main() => runApp(Foo());
class Foo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MediaQuery(
data: const MediaQueryData(),
child: Directionality(
textDirection: TextDirection.ltr,
child: Material(
child: TextField(),
),
),
);
}
}
```
Code after migration (Providing localizations using the `MaterialApp`):
```dart
import 'package:flutter/material.dart';
void main() => runApp(Foo());
class Foo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Material(
child: TextField(),
),
);
}
}
```
Code after migration (Providing localizations via the `Localizations` widget):
```dart
import 'package:flutter/material.dart';
void main() => runApp(Foo());
class Foo extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Localizations(
locale: const Locale('en', 'US'),
delegates: const <LocalizationsDelegate<dynamic>>[
DefaultWidgetsLocalizations.delegate,
DefaultMaterialLocalizations.delegate,
],
child: MediaQuery(
data: const MediaQueryData(),
child: Directionality(
textDirection: TextDirection.ltr,
child: Material(
child: TextField(),
),
),
),
);
}
}
```
## Timeline
Landed in version: 1.20.0-1.0.pre<br>
In stable release: 1.20
## References
API documentation:
* [`TextField`][]
* [`Localizations`][]
* [`MaterialLocalizations`][]
* [`DefaultMaterialLocalizations`][]
* [`MaterialApp`][]
* [Internationalizing Flutter apps][]
Relevant PR:
* [PR 58831: Assert debugCheckHasMaterialLocalizations on TextField][]
[`TextField`]: {{site.api}}/flutter/material/TextField-class.html
[`Localizations`]: {{site.api}}/flutter/widgets/Localizations-class.html
[`MaterialLocalizations`]: {{site.api}}/flutter/material/MaterialLocalizations-class.html
[`DefaultMaterialLocalizations`]: {{site.api}}/flutter/material/DefaultMaterialLocalizations-class.html
[`MaterialApp`]: {{site.api}}/flutter/material/MaterialApp-class.html
[Internationalizing Flutter apps]: /ui/accessibility-and-internationalization/internationalization
[PR 58831: Assert debugCheckHasMaterialLocalizations on TextField]: {{site.repo.flutter}}/pull/58831
| website/src/release/breaking-changes/text-field-material-localizations.md/0 | {
"file_path": "website/src/release/breaking-changes/text-field-material-localizations.md",
"repo_id": "website",
"token_count": 1239
} | 1,296 |
---
title: Flutter compatibility policy
description: How Flutter approaches the question of breaking changes.
---
The Flutter team tries to balance the need for API stability with the
need to keep evolving APIs to fix bugs, improve API ergonomics,
and provide new features in a coherent manner.
To this end, we have created a test registry where you can provide
unit tests for your own applications or libraries that we run
on every change to help us track changes that would break
existing applications. Our commitment is that we won't make any
changes that break these tests without working with the developers of
those tests to (a) determine if the change is sufficiently valuable,
and (b) provide fixes for the code so that the tests continue to pass.
If you would like to provide tests as part of this program, please
submit a PR to the [flutter/tests repository][].
The [README][flutter-tests-readme] on that repository describes
the process in detail.
[flutter/tests repository]: {{site.github}}/flutter/tests
[flutter-tests-readme]: {{site.github}}/flutter/tests#adding-more-tests
## Announcements and migration guides
If we do make a breaking change (defined as a change that caused one
or more of these submitted tests to require changes), we will announce
the change on our [flutter-announce][]
mailing list as well as in our release notes.
We provide a list of [guides for migrating code][] affected by
breaking changes.
[flutter-announce]: {{site.groups}}/forum/#!forum/flutter-announce
[guides for migrating code]: /release/breaking-changes
## Deprecation policy
We will, on occasion, deprecate certain APIs rather than outright
break them overnight. This is independent of our compatibility policy
which is exclusively based on whether submitted tests fail, as
described above.
Deprecated APIs are removed after a migration grace period. This grace
period is one calendar year after being released on the stable channel,
or after 4 stable releases, whichever is longer.
When a deprecation does reach end of life, we follow the same procedures
listed above for making breaking changes in removing the deprecated API.
## Dart and other libraries used by Flutter
The Dart language itself has a [separate breaking-change policy][],
with announcements on [Dart announce][].
In general, the Flutter team doesn't currently have any commitment
regarding breaking changes for other dependencies.
For example, it's possible that a new version of
Flutter using a new version of Skia
(the graphics engine used by some platforms on Flutter)
or Harfbuzz (the font shaping engine used by Flutter)
would have changes that affect contributed tests.
Such changes wouldn't necessarily be accompanied by a
migration guide.
[separate breaking-change policy]: {{site.github}}/dart-lang/sdk/blob/main/docs/process/breaking-changes.md
[Dart announce]: {{site.groups}}/a/dartlang.org/g/announce
| website/src/release/compatibility-policy.md/0 | {
"file_path": "website/src/release/compatibility-policy.md",
"repo_id": "website",
"token_count": 709
} | 1,297 |
---
title: Flutter 1.9.1 release notes
short-title: 1.9.1 release notes
description: Release notes for Flutter 1.9.1.
---
Hello and welcome to another stable release of Flutter. So far this year, we've been right on target with one stable release each quarter, as per [our plan](https://github.com/flutter/flutter/wiki/Flutter-build-release-channels) (well, less of a plan and more of a goal, but still, it's been working out pretty well so far…). This release is our biggest yet, with 620 Pull Requests merged from 116 contributors. As always, the interesting PRs are listed below. And there are lots of interesting things to discuss in this release, including:
* One regression fixed but also one added
* Some breaking API changes
* Some severe issues caught and fixed
* Support for macOS Catalina and iOS 13
* A number of new features
* And more!
And to be clear, when I say "we," I mean the Flutter community as a whole. The Flutter team couldn't possibly continue to scale as we have without all of our contributors, no matter who your employer is. Thanks everyone for your contributions!
## Regressions
In this release, we fixed one regression ([37955](https://github.com/flutter/flutter/pull/37955) Update shader warm-up for recent Skia changes) and caused another ([38167](https://github.com/dart-lang/sdk/issues/38167) Incremental compiler re-issuing of errors from constant evaluator). The new regression is fixed after the 1.9.1 stable release ([00d14e7](https://github.com/dart-lang/sdk/commit/00d14e7) [CFE] Always start constant evaluation error where we are asked to evaluate), so if you're seeing it, you can choose a more recent build to bring it into your Flutter apps.
## Breaking API Changes
We try hard not to make breaking changes, but we also don't want to create unintuitive APIs as we move Flutter forward to new scenarios and new platforms. These are the breaking changes in this release. Please see the associated announcements so you can move your code forward.
[33281](https://github.com/flutter/flutter/pull/33281) ([announcement](https://groups.google.com/forum/#!msg/flutter-announce/ZmnseDOW9Wc/5K7xD0V8BwAJ)) Update TextStyle and StrutStyle height docs
[34019](https://github.com/flutter/flutter/pull/34019) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/34019%7Csort:date/flutter-announce/GBFULLQxGp4/-3uujTAaCgAJ)) Selectable Text
[34665](https://github.com/flutter/flutter/pull/34665) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/34665%7Csort:date/flutter-announce/W9KQKpf0Ves/6bdDq_U8CQAJ)) Selection handles position is off
[35110](https://github.com/flutter/flutter/pull/35110) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/35110%7Csort:date/flutter-announce/FHicLlzr9gQ/OM9KgLxMBwAJ)) Always test semantics
[35136](https://github.com/flutter/flutter/pull/35136) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/35136%7Csort:date/flutter-announce/UrhJwkaKaSc/ONoMzKrtAwAJ)) Update Dark Theme disabledColor to White38
[35785](https://github.com/flutter/flutter/pull/35785) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/35785%7Csort:date/flutter-announce/AL5ure2NWNI/4gPoziQSBAAJ)) Remove reverseDuration from implicitly animated widgets, since it's ignored.
[36030](https://github.com/flutter/flutter/pull/36030) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/36030%7Csort:date/flutter-announce/bN6vFnoVpmk/7UCOxj6LCwAJ)) [Material] Implement TooltipTheme and Tooltip.textStyle, fix Tooltip debugLabel, update Tooltip defaults
[36106](https://github.com/flutter/flutter/pull/36106) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/36106%7Csort:date/flutter-announce/Yo3WxDCria4/AgNUznoZBgAJ)) Updated ColorScheme.dark() colors to match the Material Dark theme specification
[36217](https://github.com/flutter/flutter/pull/36217) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/36217%7Csort:date/flutter-announce/3vyI_41YX44/yQy0MHAuBgAJ)) Split Mouse from Listener
[36402](https://github.com/flutter/flutter/pull/36402) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/36402%7Csort:date/flutter-announce/taTeI07sK0w/-fsJvpfCFQAJ)) Teach render objects to reuse engine layers
[36856](https://github.com/flutter/flutter/pull/36856) (no announcement) [Material] Implement TooltipTheme and Tooltip.textStyle, update Tooltip defaults
[36964](https://github.com/flutter/flutter/pull/36964) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/36964%7Csort:date/flutter-announce/IALsYuwhzNk/OaP1ijOhCwAJ)) Interactive size const
[37338](https://github.com/flutter/flutter/pull/37338) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/37338%7Csort:date/flutter-announce/ZNX-Rd6IKSQ/3K4-1_skDAAJ)) Update constructor APIs TooltipTheme, ToggleButtonsTheme, PopupMenuTheme
[37341](https://github.com/flutter/flutter/pull/37341) (no announcement) hiding original hero after hero transition
[37544](https://github.com/flutter/flutter/pull/37544) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/37544%7Csort:date/flutter-announce/Igg0DuIO6Zg/2QroNaSkDAAJ)) Replace ButtonBar.bar method with ButtonBarTheme
[37652](https://github.com/flutter/flutter/pull/37652) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/37652%7Csort:date/flutter-announce/bTliCEss-VA/CfqN9DCWEwAJ)) Change RenderObject.getTransformTo to include ancestor.
[37736](https://github.com/flutter/flutter/pull/37736) ([announcement](https://groups.google.com/forum/#!searchin/flutter-announce/37736%7Csort:date/flutter-announce/-kotruZbBDQ/vny4JjFmFQAJ)) Added a composable waitForCondition Driver/extension API
## Severe: Crash, Customer Critical and Performance Fixes
In Flutter, we try to add a little bit of quality to every release. This time around, we fixed several severe issues, including crashes, customer critical issues and performance issues.
[34907](https://github.com/flutter/flutter/pull/34907) Fixed LicensePage to close page before loaded the License causes an error
[35223](https://github.com/flutter/flutter/pull/35223) Navigator pushAndRemoveUntil Fix
[36097](https://github.com/flutter/flutter/pull/36097) Fix nested scroll view can rebuild without layout
[37033](https://github.com/flutter/flutter/pull/37033) fix debug paint crash when axis direction inverted
[37254](https://github.com/flutter/flutter/pull/37254) Clamp Scaffold's max body height when extendBody is true
[34298](https://github.com/flutter/flutter/pull/34298) Preserving SafeArea : Part 2
[37718](https://github.com/flutter/flutter/pull/37718) Adding physicalDepth to MediaQueryData & TestWindow
[35297](https://github.com/flutter/flutter/pull/35297) Fix the first frame logic in tracing and driver
## New Features
This release also brings with it two new Material widgets: the ToggleButtons widget (called a [segmented control](https://developer.apple.com/design/human-interface-guidelines/ios/controls/segmented-controls/) on iOS) and a ColorFilter widget (described below in the Text & Accessibility section). To see these widgets in action, check out short [ToggleButtons ](https://github.com/csells/flutter_toggle_buttons)and [ColorFilter](https://github.com/csells/flutter_color_filter) samples. Also, the SelectableText widget allows the user to select read-only text.
[34599](https://github.com/flutter/flutter/pull/34599) [Material] ToggleButtons
[34019](https://github.com/flutter/flutter/pull/34019) Selectable Text
[35207](https://github.com/flutter/flutter/pull/35207) refactor out selection handlers
[36030](https://github.com/flutter/flutter/pull/36030) [Material] Implement TooltipTheme and Tooltip.textStyle, fix Tooltip debugLabel, update Tooltip defaults
[36411](https://github.com/flutter/flutter/pull/36411) Implement InputDecorationTheme copyWith, ==, hashCode
[36856](https://github.com/flutter/flutter/pull/36856) [Material] Implement TooltipTheme and Tooltip.textStyle, update Tooltip defaults
[36963](https://github.com/flutter/flutter/pull/36963) Add margins to tooltips
[37266](https://github.com/flutter/flutter/pull/37266) Change the value of kMaxUnsignedSMI for the Web
[37341](https://github.com/flutter/flutter/pull/37341) hiding original hero after hero transition
[37492](https://github.com/flutter/flutter/pull/37492) Drawer edge drag width improvements
## macOS Catalina Support
With the release of macOS Catalina just around the corner, we've made sure that our tooling continues to work smoothly as you migrate to Catalina, iOS 13 and Xcode 11. I should note that **you'll want to upgrade to the Flutter 1.9.1 stable release before upgrading to Catalina**. The other order works, too, but you'll see an error when you do it that way (the [error](https://github.com/flutter/flutter/issues/33890) is benign, but still…).
[38325](https://github.com/flutter/flutter/pull/38325) refactor flutter upgrade to be 2 part, with the second part re-entrant
[cd70b](https://github.com/dart-lang/sdk/commit/ec2d06d4b9f4f0accad2b4aa841499e8e93cd70b) Use MAP_JIT when doing an mmap for executable pages (needed for macOS Catalina).
[38662](https://github.com/flutter/flutter/pull/38662) Change from using defaults to plutil for Plist parsing
[2856](https://github.com/flutter/website/issues/2856) Update "Getting Started" path setup to support zsh shell (macOS Catalina support)
[2857](https://github.com/flutter/website/issues/2857) Update "iOS Setup" page to reflect Xcode 11 UI update
[37733](https://github.com/flutter/flutter/pull/37733) Support macOS Catalina-style signing certificate names
[10010](https://github.com/flutter/engine/pull/10010) Use simarm_x64 when targeting arm
[37407](https://github.com/flutter/flutter/pull/37407) Remove multi-arch check in iOS builds
[37445](https://github.com/flutter/flutter/pull/37445) Switch iOS gen_snapshot from multi-arch binary to multiple binaries
[37647](https://github.com/flutter/flutter/pull/37647) Change priority of gen_snapshot search paths
## iOS
With over 50 PRs in this release, iOS support continues to be a big focus for Flutter, including an iOS 13 scrollbar implementation (that includes long-press, drag-from-right and vibration feedback support), an update to the CupertinoSwitch widget to match iOS 13 and continued experimentation with bitcode.
[35829](https://github.com/flutter/flutter/pull/35829) iOS 13 scrollbar
[37724](https://github.com/flutter/flutter/pull/37724) iOS 13 scrollbar vibration
[36087](https://github.com/flutter/flutter/pull/36087) Update visual style of CupertinoSwitch to match iOS 13
[38587](https://github.com/flutter/flutter/pull/38587) Improve bitcode check
[36471](https://github.com/flutter/flutter/pull/36471) Enable bitcode compilation for AOT
[36093](https://github.com/flutter/flutter/pull/36093) Reland bundle ios deps
[34676](https://github.com/flutter/flutter/pull/34676) Enable selection by default for password text field and expose api to…
[34723](https://github.com/flutter/flutter/pull/34723) CupertinoTextField vertical alignment
[34964](https://github.com/flutter/flutter/pull/34964) CupertinoTextField.onTap
[35303](https://github.com/flutter/flutter/pull/35303) fix default artifacts to exclude ios and android
[35307](https://github.com/flutter/flutter/pull/35307) Clean up host_app_ephemeral Profile build settings
[35731](https://github.com/flutter/flutter/pull/35731) Keep LLDB connection to iOS device alive while running from CLI.
[35749](https://github.com/flutter/flutter/pull/35749) add iOS build benchmarks
[35756](https://github.com/flutter/flutter/pull/35756) Remove @objc inference build setting
[35763](https://github.com/flutter/flutter/pull/35763) UIApplicationLaunchOptionsKey -> UIApplication.LaunchOptionsKey
[35833](https://github.com/flutter/flutter/pull/35833) Disable CocoaPods input and output paths in Xcode build phase for ephemeral add-to-app project
[36174](https://github.com/flutter/flutter/pull/36174) [cupertino_icons] Add glyph refs for brightness #16102
[36194](https://github.com/flutter/flutter/pull/36194) Keep LLDB connection to iOS device alive while running from CLI.
[36498](https://github.com/flutter/flutter/pull/36498) Clean up host_app_ephemeral_cocoapods Profile build settings
[36793](https://github.com/flutter/flutter/pull/36793) Vend Flutter module App.framework as a local CocoaPod pod to be installed by a host app
[36887](https://github.com/flutter/flutter/pull/36887) Fix thumb size calculation
[37026](https://github.com/flutter/flutter/pull/37026) Add support for the Kannada (kn) locale
[37048](https://github.com/flutter/flutter/pull/37048) use SizedBox instead of Container for building collapsed selection
[37276](https://github.com/flutter/flutter/pull/37276) Make podhelper.rb a template to avoid passing in the module name
[37319](https://github.com/flutter/flutter/pull/37319) resizeToAvoidBottomInset Cupertino without NavBar
[37449](https://github.com/flutter/flutter/pull/37449) If xcode_backend.sh script fails or substitute variables are missing, fail the host Xcode build
[37738](https://github.com/flutter/flutter/pull/37738) Use relative paths when installing module pods
[37809](https://github.com/flutter/flutter/pull/37809) Add autofocus parameter to widgets which use Focus widget internally
[37906](https://github.com/flutter/flutter/pull/37906) Always install the ephemeral engine copy instead of fetching from CocoaPods specs
[38593](https://github.com/flutter/flutter/pull/38593) Fix text scale factor for non-content components of Cupertino scaffolds
[38629](https://github.com/flutter/flutter/pull/38629) Handle case of a connected unpaired iOS device
[38645](https://github.com/flutter/flutter/pull/38645) Rename iOS arch for macOS release mode (macOS release mode 2 of 3)
[9075](https://github.com/flutter/engine/pull/9075) IOS Platform view transform/clipping
[9464](https://github.com/flutter/engine/pull/9464) Added shebangs to ios unit test scripts.
[9478](https://github.com/flutter/engine/pull/9478) iOS PlatformView clip path
[9491](https://github.com/flutter/engine/pull/9491) Purge caches on low memory on iOS
[9636](https://github.com/flutter/engine/pull/9636) Added shebangs to ios unit test scripts. (#9464)
[9667](https://github.com/flutter/engine/pull/9667) iOS platform view opacity
[9722](https://github.com/flutter/engine/pull/9722) Forwards iOS dark mode trait to the Flutter framework (#34441).
[9819](https://github.com/flutter/engine/pull/9819) Allow for dynamic thread merging on IOS for embedded view mutations
[9952](https://github.com/flutter/engine/pull/9952) ios: Fixed the callback for the first frame so that it isn't predicated on having a splash screen.
[10186](https://github.com/flutter/engine/pull/10186) Ensure debug-mode apps are always attached on iOS.
[10381](https://github.com/flutter/engine/pull/10381) Fix empty composing range on iOS
[10386](https://github.com/flutter/engine/pull/10386) Don't use DBC for hot-reload on iOS.
[10645](https://github.com/flutter/engine/pull/10645) Don't use DBC for hot-reload on iOS.
[10656](https://github.com/flutter/engine/pull/10656) fix iOS keyboard crash : -[__NSCFString substringWithRange:], range o…
[10662](https://github.com/flutter/engine/pull/10662) bump local podspec's ios deployment target version from 7.0 to 8.0
[10777](https://github.com/flutter/engine/pull/10777) Manually roll Skia to pull in iOS armv7 build failure fix.
[10791](https://github.com/flutter/engine/pull/10791) Re-lands platform brightness support on iOS
[10820](https://github.com/flutter/engine/pull/10820) iOS JIT support and enhancements for scenarios app
[10949](https://github.com/flutter/engine/pull/10949) Fix iOS references to PostPrerollResult
[11006](https://github.com/flutter/engine/pull/11006) On iOS report the preferred frames per second to tools via service protocol.
## Android
The biggest addition to Android this release is support for a new flutter command: 'flutter build aar'. This new build command works just like 'flutter build apk' or 'flutter build appbundle', but for plugins and module projects. By building the plugins as [AARs](https://developer.android.com/studio/projects/android-library), the Android Gradle plugin can use Jetifier to translate support libraries into AndroidX libraries for all the plugin's native code, which reduces the error rate when using AndroidX in apps.
[35217](https://github.com/flutter/flutter/pull/35217) Add flutter build aar
[36732](https://github.com/flutter/flutter/pull/36732) Flutter build aar
[10778](https://github.com/flutter/engine/pull/10778) Build JARs containing the Android embedding sources and the engine native library
[34573](https://github.com/flutter/flutter/pull/34573) Ensures flutter jar is added to all build types on plugin projects
[36695](https://github.com/flutter/flutter/pull/36695) Android visible password input type support
[36805](https://github.com/flutter/flutter/pull/36805) Allow flavors and custom build types in host app
[37194](https://github.com/flutter/flutter/pull/37194) [flutter_tool] More gracefully handle Android sdkmanager failure
[37405](https://github.com/flutter/flutter/pull/37405) Add .android/Flutter/flutter.iml to module template.
[37752](https://github.com/flutter/flutter/pull/37752) Remove dead flag gradle-dir in flutter config
[9206](https://github.com/flutter/engine/pull/9206) Android Embedding Refactor PR31: Integrate platform views with the new embedding and the plugin shim.
[9360](https://github.com/flutter/engine/pull/9360) Simplify loading of app bundles on Android
[9476](https://github.com/flutter/engine/pull/9476) fix NPE when a touch event is sent to an unknown Android platform view
[9501](https://github.com/flutter/engine/pull/9501) [android] External textures must be rescaled to fill the canvas
[9525](https://github.com/flutter/engine/pull/9525) Android Embedding Refactor PR36: Add splash screen support.
[9895](https://github.com/flutter/engine/pull/9895) Android Embedding PR37: Separated FlutterActivity and FlutterFragment via FlutterActivityAndFragmentDelegate
[9999](https://github.com/flutter/engine/pull/9999) Add support for Android's visible password input type
[10250](https://github.com/flutter/engine/pull/10250) Android Embedding Refactor 38: Removed AssetManager from DartEntrypoint.
[10413](https://github.com/flutter/engine/pull/10413) Pass Android Q insets.systemGestureInsets to Window
[10424](https://github.com/flutter/engine/pull/10424) Fix deprecation warnings in the Android embedding
[10481](https://github.com/flutter/engine/pull/10481) Android embedding refactor pr40 add static engine cache
[10771](https://github.com/flutter/engine/pull/10771) Don't use gradle daemon for building
[11001](https://github.com/flutter/engine/pull/11001) Avoid dynamic lookups of the engine library's symbols on Android
[11015](https://github.com/flutter/engine/pull/11015) Remove the output directory prefix from the Android engine JAR filename
## Material
Of course, the Material design language also continues to be a major focus for Flutter.
[34869](https://github.com/flutter/flutter/pull/34869) [Material] Properly call onChangeStart and onChangeEnd in Range Slider
[34872](https://github.com/flutter/flutter/pull/34872) [Material] Support for hovered, focused, and pressed border color on OutlineButtons
[34906](https://github.com/flutter/flutter/pull/34906) Fix unused [applicationIcon] property on [showLicensePage]
[34932](https://github.com/flutter/flutter/pull/34932) Added onChanged property to TextFormField
[35075](https://github.com/flutter/flutter/pull/35075) Allow for customizing SnackBar's content TextStyle in its theme
[35282](https://github.com/flutter/flutter/pull/35282) Add Container fallback to Ink build method
[35496](https://github.com/flutter/flutter/pull/35496) [Material] Text scale and wide label fixes for Slider and Range Slider value indicator shape
[35499](https://github.com/flutter/flutter/pull/35499) Added MaterialApp.themeMode to control which theme is used.
[35560](https://github.com/flutter/flutter/pull/35560) Support for elevation based dark theme overlay color in the Material widget
[35878](https://github.com/flutter/flutter/pull/35878) Add flag to use root navigator for showModalBottomSheet
[36028](https://github.com/flutter/flutter/pull/36028) Fix slider preferred height
[36088](https://github.com/flutter/flutter/pull/36088) Add PopupMenuTheme to enable theming color, shape, elevation, text style of Menu
[36409](https://github.com/flutter/flutter/pull/36409) Add searchFieldLabel to SearchDelegate in order to show a custom hint
[36880](https://github.com/flutter/flutter/pull/36880) [Material] Create material Banner component
[37038](https://github.com/flutter/flutter/pull/37038) Update SnackBar to the latest Material specs.
[37259](https://github.com/flutter/flutter/pull/37259) [Material] Add support for hovered, pressed, focused, and selected text color on Chips.
[37269](https://github.com/flutter/flutter/pull/37269) [Material] FAB refactor - remove unnecessary IconTheme
[37355](https://github.com/flutter/flutter/pull/37355) Added ThemeData.from() method to construct a Theme from a ColorScheme
[37403](https://github.com/flutter/flutter/pull/37403) add ontap to textformfield
[37436](https://github.com/flutter/flutter/pull/37436) Hide text selection handle after entering text
[37556](https://github.com/flutter/flutter/pull/37556) [Material] Make RawChip.selected non-nullable.
[37636](https://github.com/flutter/flutter/pull/37636) Add CheckboxListTile checkColor
[37715](https://github.com/flutter/flutter/pull/37715) Fix markdown link format
[37825](https://github.com/flutter/flutter/pull/37825) Automatic focus highlight mode for FocusManager
[37870](https://github.com/flutter/flutter/pull/37870) remove Header flag from BottomNavigationBar items
[37877](https://github.com/flutter/flutter/pull/37877) Adds DefaultTextStyle ancestor to Tooltip Overlay
[37882](https://github.com/flutter/flutter/pull/37882) Add dense property to AboutListTile
[38467](https://github.com/flutter/flutter/pull/38467) [Material] Add splashColor to FAB and FAB ThemeData
[38621](https://github.com/flutter/flutter/pull/38621) [Material] Create theme for Dividers to enable customization of thickness
[38636](https://github.com/flutter/flutter/pull/38636) Adds the arrowColor option to UserAccountsDrawerHeader (#38608)
## Text & Accessibility
The biggest change in text & accessibility for this release is the new ColorFilter support, which enables you to recolor an entire widget tree according, for example, to adjust your app for users with red/green color blindness. To see it in action, check out this [ColorFilter sample](https://github.com/csells/flutter_color_filter).
[35468](https://github.com/flutter/flutter/pull/35468) Add colorFilterLayer/Widget
[9641](https://github.com/flutter/engine/pull/9641) Let pushColorFilter accept all types of ColorFilters
[9668](https://github.com/flutter/engine/pull/9668) Refactor ColorFilter to have a native wrapper
[9789](https://github.com/flutter/engine/pull/9789) fix ColorFilter.matrix constness
[34515](https://github.com/flutter/flutter/pull/34515) OutlineInputBorder adjusts for borderRadius that is too large
[35100](https://github.com/flutter/flutter/pull/35100) Add handling of 'TextInput.clearClient' message from platform to framework (#35054).
[35219](https://github.com/flutter/flutter/pull/35219) Text selection menu show/hide cases
[35493](https://github.com/flutter/flutter/pull/35493) Do not use ideographic baseline for RenderPargraph baseline
[36974](https://github.com/flutter/flutter/pull/36974) Multiline Selection Menu Position Bug
[37042](https://github.com/flutter/flutter/pull/37042) Fix selection menu not showing after clear
[38573](https://github.com/flutter/flutter/pull/38573) Clamp scrollOffset to prevent textfield bouncing
[35487](https://github.com/flutter/flutter/pull/35487) Fix RenderFittedBox when child.size.isEmpty
[36243](https://github.com/flutter/flutter/pull/36243) Allow semantics labels to be shorter or longer than raw text
[36303](https://github.com/flutter/flutter/pull/36303) Add sync star benchmark cases
[37158](https://github.com/flutter/flutter/pull/37158) Fix Textfields in Semantics Debugger
[37828](https://github.com/flutter/flutter/pull/37828) have android_semantics_testing use adb from ENV provided android sdk
## Web (tech preview)
Work continues on adding to the technical preview of web platform support to Flutter in this release, including a flag to tell if an app is running on the web. To see it in action, check out [main.dart](https://github.com/csells/flutter_mazegen/blob/master/lib/main.dart) in the [flutter_mazegen sample](https://github.com/csells/flutter_mazegen/). To learn more, see [Flutter for web](https://docs.flutter.dev/web).
[36135](https://github.com/flutter/flutter/pull/36135) add a kIsWeb constant to foundation
[34252](https://github.com/flutter/flutter/pull/34252) Integrate dwds into flutter tool for web support
[34896](https://github.com/flutter/flutter/pull/34896) Allow multi-root web builds
[35221](https://github.com/flutter/flutter/pull/35221) Twiggle bit to exclude dev and beta from desktop and web
[36297](https://github.com/flutter/flutter/pull/36297) Add multi-line flag to semantics
[36465](https://github.com/flutter/flutter/pull/36465) Use FlutterFeatures to configure web and desktop devices
[36548](https://github.com/flutter/flutter/pull/36548) Fix the web builds by reverting version bump of build_modules
[36549](https://github.com/flutter/flutter/pull/36549) fix number encoding in message codecs for the Web
[37515](https://github.com/flutter/flutter/pull/37515) Upstream web support for IterableProperty
[37637](https://github.com/flutter/flutter/pull/37637) don't call Platform.operatingSystem in RenderView diagnostics
[37638](https://github.com/flutter/flutter/pull/37638) [web][upstream] Fix debugPrintStack for web platform
[37658](https://github.com/flutter/flutter/pull/37658) fix windows path for dwds/web builds
[37712](https://github.com/flutter/flutter/pull/37712) [web][upstream] Optimize InactiveElements deactivation
[37812](https://github.com/flutter/flutter/pull/37812) [web][upstream] Don't register exit/saveCompilationTrace for web platform since they are not available
[37815](https://github.com/flutter/flutter/pull/37815) Restructure resident web runner usage to avoid SDK users that don't support dwds
[38499](https://github.com/flutter/flutter/pull/38499) Update build web compilers and configure libraries
## Desktop (experimental)
We continue to move forward with the experimental support for the desktop platform in Flutter. If you'd like to take part in the experiment, see [Flutter Desktop shells](https://docs.flutter.dev/desktop).
[32770](https://github.com/flutter/flutter/pull/32770) Dismiss modal with any button press
[34660](https://github.com/flutter/flutter/pull/34660) Add --target support for Windows and Linux
[34712](https://github.com/flutter/flutter/pull/34712) Fix FocusTraversalPolicy makes focus lost
[34752](https://github.com/flutter/flutter/pull/34752) [linux] Receives the unmodified characters obtained from GLFW
[35495](https://github.com/flutter/flutter/pull/35495) mark windows and macos chrome dev mode as flaky
[36197](https://github.com/flutter/flutter/pull/36197) Fix windows, exclude widgets from others
[36722](https://github.com/flutter/flutter/pull/36722) Skip flaky test windows
[36784](https://github.com/flutter/flutter/pull/36784) [flutter_tool] Improve Windows flutter clean error message
[36845](https://github.com/flutter/flutter/pull/36845) Improve Windows build failure message
[36987](https://github.com/flutter/flutter/pull/36987) Flutter assemble for macos take 2!
[37211](https://github.com/flutter/flutter/pull/37211) Don't enable scroll wheel when scrolling is off
[37342](https://github.com/flutter/flutter/pull/37342) Fix mouse region crash when using closures
[37344](https://github.com/flutter/flutter/pull/37344) Fix mouse region double render
[37351](https://github.com/flutter/flutter/pull/37351) fix errors caught by roll of macOS assemble
[37365](https://github.com/flutter/flutter/pull/37365) only build macOS kernel in debug mode
[37425](https://github.com/flutter/flutter/pull/37425) Support for macOS release mode (1 of 3)
[37509](https://github.com/flutter/flutter/pull/37509) Use macOS ephemeral directory for Pod env script
[37664](https://github.com/flutter/flutter/pull/37664) Partial macOS assemble revert
[37891](https://github.com/flutter/flutter/pull/37891) Focus debug
[38651](https://github.com/flutter/flutter/pull/38651) Update the macOS Podfile template platform version
[9654](https://github.com/flutter/engine/pull/9654) Begin separating macOS engine from view controller
[9672](https://github.com/flutter/engine/pull/9672) Add FLEDartProject for macOS embedding
[9745](https://github.com/flutter/engine/pull/9745) Fix windows test by not attempting to open a directory as a file.
[9799](https://github.com/flutter/engine/pull/9799) Update buildroot to c4df4a7b to pull in MSVC 2017 Update 9 on Windows.
[9835](https://github.com/flutter/engine/pull/9835) [Windows] Alternative Windows shell platform implementation
[9953](https://github.com/flutter/engine/pull/9953) [macos] Add reply to binary messenger
[10009](https://github.com/flutter/engine/pull/10009) [macos] Revert check on FlutterCodecs and refactor message function]
[10189](https://github.com/flutter/engine/pull/10189) [macos] Reland function refactor
[11010](https://github.com/flutter/engine/pull/11010) Rename macOS FLE* classes to Flutter*
[36546](https://github.com/flutter/flutter/pull/36546) Unskip date_picker_test on Windows as underlying issue 19696 was fixed.
## Framework
The core framework for Flutter saw several important features in this release, including support for an additional 24 new locales (ranging [from Afrikaans to Zulu](https://github.com/flutter/flutter/pull/36589)).
[36589](https://github.com/flutter/flutter/pull/36589) Update Localizations: added 24 new locales (reprise)
[33936](https://github.com/flutter/flutter/pull/33936) New parameter for RawGestureDetector to customize semantics mapping
[34202](https://github.com/flutter/flutter/pull/34202) Remove _debugWillReattachChildren assertions from _TableElement
[34626](https://github.com/flutter/flutter/pull/34626) AsyncSnapshot.data to throw if error or no data
[34895](https://github.com/flutter/flutter/pull/34895) Remove flutter_tools support for old AOT snapshotting
[34919](https://github.com/flutter/flutter/pull/34919) Remove duplicate error parts
[35132](https://github.com/flutter/flutter/pull/35132) Reduce allocations by reusing a matrix for transient transforms in _transformRect
[35143](https://github.com/flutter/flutter/pull/35143) More HttpClientResponse Uint8List fixes
[35149](https://github.com/flutter/flutter/pull/35149) More HttpClientResponse implements Stream<Uint8List> fixes
[35232](https://github.com/flutter/flutter/pull/35232) New benchmark: Gesture semantics
[35233](https://github.com/flutter/flutter/pull/35233) Attempt skipping coverage shard if tools did not change
[35245](https://github.com/flutter/flutter/pull/35245) More preparation for HttpClientResponse implements Uint8List
[35246](https://github.com/flutter/flutter/pull/35246) attempt to not skip coverage on post commit
[35263](https://github.com/flutter/flutter/pull/35263) remove unnecessary ..toList()
[35280](https://github.com/flutter/flutter/pull/35280) benchmarkWidgets.semanticsEnabled default false.
[35288](https://github.com/flutter/flutter/pull/35288) Apply coverage skip math correctly
[35408](https://github.com/flutter/flutter/pull/35408) Remove print
[35482](https://github.com/flutter/flutter/pull/35482) Use the new service protocol message names
[35491](https://github.com/flutter/flutter/pull/35491) Include tags in SemanticsNode debug properties
[35646](https://github.com/flutter/flutter/pull/35646) Prepare for Socket implements Stream
[35725](https://github.com/flutter/flutter/pull/35725) Update annotated region findAll implementation to use Iterables directly.
[35750](https://github.com/flutter/flutter/pull/35750) use sentence case in error message titles
[35762](https://github.com/flutter/flutter/pull/35762) Refactor keymapping for resident_runner
[35828](https://github.com/flutter/flutter/pull/35828) Cleanup widgets/sliver_persistent_header.dart with resolution of dart-lang/sdk#31543
[35913](https://github.com/flutter/flutter/pull/35913) Change focus example to be more canonical (and correct)
[35932](https://github.com/flutter/flutter/pull/35932) Upgraded framework packages with 'flutter update-packages --force-upgrade'.
[35979](https://github.com/flutter/flutter/pull/35979) Optimizes gesture recognizer fixes #35658
[36262](https://github.com/flutter/flutter/pull/36262) Prevents infinite loop in Table._computeColumnWidths
[36302](https://github.com/flutter/flutter/pull/36302) Issues/30526 gc
[36333](https://github.com/flutter/flutter/pull/36333) fix sliver fixed pinned appbar
[36396](https://github.com/flutter/flutter/pull/36396) Optimize the transformRect and transformPoint methods in matrix_utils.
[36482](https://github.com/flutter/flutter/pull/36482) Sped up shader warmup by only drawing on a 100x100 surface
[36493](https://github.com/flutter/flutter/pull/36493) Fixes sliver list does not layout firstchild when child reordered
[36503](https://github.com/flutter/flutter/pull/36503) Disabling Firebase Test Lab smoke test to unblock autoroller
[36698](https://github.com/flutter/flutter/pull/36698) fixes iphone force press keyboard select crashes
[36768](https://github.com/flutter/flutter/pull/36768) add an error count field to the Flutter.Error event
[36857](https://github.com/flutter/flutter/pull/36857) Ensure user-thrown errors have ErrorSummary nodes
[36867](https://github.com/flutter/flutter/pull/36867) Add reference to StrutStyle from TextStyle
[36955](https://github.com/flutter/flutter/pull/36955) Extract common PlatformView functionality: Painting and Semantics
[37187](https://github.com/flutter/flutter/pull/37187) use FlutterError in MultiChildRenderObjectWidget
[37275](https://github.com/flutter/flutter/pull/37275) Optimize the transformRect and transformPoint methods in matrix_utils…
[37479](https://github.com/flutter/flutter/pull/37479) Remove bogus code in ContainerParentDataMixin.detach
[37497](https://github.com/flutter/flutter/pull/37497) Extract common PlatformView functionality: Gesture and PointerEvent
[37703](https://github.com/flutter/flutter/pull/37703) PlatformViewLink, handling creation of the PlatformViewSurface and dispose PlatformViewController
[37790](https://github.com/flutter/flutter/pull/37790) Doc: Image.memory only accepts compressed format
[37880](https://github.com/flutter/flutter/pull/37880) reduce mac workload
[38441](https://github.com/flutter/flutter/pull/38441) Fix getOffsetToReveal for growthDirection reversed and AxisDirection down or right
[38463](https://github.com/flutter/flutter/pull/38463) Do not construct arguments to _focusDebug when running in non-debug modes
[38639](https://github.com/flutter/flutter/pull/38639) PlatformViewLink. cached surface should be a Widget type
[38686](https://github.com/flutter/flutter/pull/38686) Rename patent file
[38704](https://github.com/flutter/flutter/pull/38704) Adds canRequestFocus toggle to FocusNode
[38710](https://github.com/flutter/flutter/pull/38710) PlatformViewLink: Rename CreatePlatformViewController to CreatePlatformViewCallback
[35335](https://github.com/flutter/flutter/pull/35335) Using custom exception class for network loading error
[35574](https://github.com/flutter/flutter/pull/35574) Fix semantics for floating pinned sliver app bar
[35810](https://github.com/flutter/flutter/pull/35810) SliverFillRemaining accounts for child size when hasScrollBody is false
[35941](https://github.com/flutter/flutter/pull/35941) SliverLayoutBuilder
## Engine
The core engine continues to see many improvements across the board in this release.
[9041](https://github.com/flutter/engine/pull/9041) TextStyle.height property as a multiple of font size instead of multiple of ascent+descent+leading.
[9089](https://github.com/flutter/engine/pull/9089) Wire up custom event loop interop for the GLFW embedder.
[9329](https://github.com/flutter/engine/pull/9329) Fixed memory leak by way of accidental retain on implicit self
[9403](https://github.com/flutter/engine/pull/9403) Remove variants of ParagraphBuilder::AddText that are not used within the engine
[9419](https://github.com/flutter/engine/pull/9419) Has a binary messenger
[9423](https://github.com/flutter/engine/pull/9423) Don't hang to a platform view's input connection after it's disposed
[9424](https://github.com/flutter/engine/pull/9424) Send timings of the first frame without batching
[9431](https://github.com/flutter/engine/pull/9431) Generate weak pointers only in the platform thread
[9436](https://github.com/flutter/engine/pull/9436) Add the functionality to merge and unmerge MessageLoopTaskQueues
[9439](https://github.com/flutter/engine/pull/9439) Eliminate unused import in FlutterView
[9452](https://github.com/flutter/engine/pull/9452) Convert RRect.scaleRadii to public method
[9456](https://github.com/flutter/engine/pull/9456) Made sure that the run_tests script returns the right error code.
[9459](https://github.com/flutter/engine/pull/9459) Remove unused/unimplemented shell constructor
[9460](https://github.com/flutter/engine/pull/9460) Fixed logLevel filter bug so that filter now works as expected.
[9461](https://github.com/flutter/engine/pull/9461) Adds API for retaining intermediate engine layers
[9463](https://github.com/flutter/engine/pull/9463) Removed unused imports in new embedding.
[9466](https://github.com/flutter/engine/pull/9466) Re-enable the Wuffs GIF decoder
[9468](https://github.com/flutter/engine/pull/9468) Manually draw remainder curve for wavy decorations
[9485](https://github.com/flutter/engine/pull/9485) Add --observatory-host switch
[9486](https://github.com/flutter/engine/pull/9486) Rework image & texture management to use concurrent message queues.
[9489](https://github.com/flutter/engine/pull/9489) Handle ambiguous directionality of final trailing whitespace in mixed bidi text
[9490](https://github.com/flutter/engine/pull/9490) fix a bug where the platform view's transform is not reset before set frame
[9493](https://github.com/flutter/engine/pull/9493) Run benchmarks on try jobs.
[9495](https://github.com/flutter/engine/pull/9495) fix build breakage on [PlatformViews.mm](http://platformviews.mm/)
[9498](https://github.com/flutter/engine/pull/9498) Notify framework to clear input connection when app is backgrounded (#35054).
[9503](https://github.com/flutter/engine/pull/9503) Improve caching limits for Skia
[9506](https://github.com/flutter/engine/pull/9506) Synchronize main thread and gpu thread for first render frame
[9508](https://github.com/flutter/engine/pull/9508) Support image filter on paint
[9532](https://github.com/flutter/engine/pull/9532) fix FlutterOverlayView doesn't remove from superview in some cases
[9556](https://github.com/flutter/engine/pull/9556) Minimal integration with the Skia text shaper module
[9561](https://github.com/flutter/engine/pull/9561) libtxt: fix reference counting of SkFontStyleSets held by font asset providers
[9585](https://github.com/flutter/engine/pull/9585) Fix a race in the embedder accessibility unit test
[9589](https://github.com/flutter/engine/pull/9589) Fixes a plugin overwrite bug in the plugin shim system.
[9590](https://github.com/flutter/engine/pull/9590) Apply patches that have landed in topaz since we ported the runners to the engine repo
[9591](https://github.com/flutter/engine/pull/9591) Document various classes in //flutter/shell/common.
[9632](https://github.com/flutter/engine/pull/9632) Added Doxyfile.
[9633](https://github.com/flutter/engine/pull/9633) Cherry-pick fix for flutter/flutter#35291
[9640](https://github.com/flutter/engine/pull/9640) make EmbeddedViewParams a unique ptr
[9642](https://github.com/flutter/engine/pull/9642) Fix warning about settings unavailable GN arg build_glfw_shell
[9651](https://github.com/flutter/engine/pull/9651) Move the mutators stack handling to preroll
[9652](https://github.com/flutter/engine/pull/9652) Pipeline allows continuations that can produce to front
[9653](https://github.com/flutter/engine/pull/9653) External view embedder can tell if embedded views have mutated
[9655](https://github.com/flutter/engine/pull/9655) Allow embedders to add callbacks for responses to platform messages from the framework.
[9660](https://github.com/flutter/engine/pull/9660) ExternalViewEmbedder can CancelFrame after pre-roll
[9661](https://github.com/flutter/engine/pull/9661) Raster now returns an enum rather than boolean
[9663](https://github.com/flutter/engine/pull/9663) Mutators Stack refactoring
[9685](https://github.com/flutter/engine/pull/9685) fix Picture.toImage return type check and api conform test.
[9698](https://github.com/flutter/engine/pull/9698) Ensure that platform messages without response handles can be dispatched.
[9713](https://github.com/flutter/engine/pull/9713) Explain why OpacityLayer has an offset field
[9717](https://github.com/flutter/engine/pull/9717) Fixed logLevel filter bug so that filter now works as expected. (#9460)
[9721](https://github.com/flutter/engine/pull/9721) Add comments to differentiate two cache paths
[9725](https://github.com/flutter/engine/pull/9725) Make the license script compatible with recently changed Dart I/O stream APIs
[9727](https://github.com/flutter/engine/pull/9727) Add hooks for InputConnection lock and unlocking
[9734](https://github.com/flutter/engine/pull/9734) Fix backspace crash on Chinese devices
[9737](https://github.com/flutter/engine/pull/9737) Use libc++ variant of string view and remove the FML variant.
[9741](https://github.com/flutter/engine/pull/9741) Make FLEViewController's view an internal detail
[9747](https://github.com/flutter/engine/pull/9747) Remove get engine
[9750](https://github.com/flutter/engine/pull/9750) FLEViewController/Engine API changes
[9758](https://github.com/flutter/engine/pull/9758) Include SkParagraph headers only when the enable-skshaper flag is on
[9762](https://github.com/flutter/engine/pull/9762) Fall back to a fully qualified path to [libapp.so](http://libapp.so/) if the library can not be loaded by name
[9767](https://github.com/flutter/engine/pull/9767) Un-deprecated FlutterViewController's binaryMessenger.
[9769](https://github.com/flutter/engine/pull/9769) Document //flutter/shell/common/engine.
[9772](https://github.com/flutter/engine/pull/9772) fix objcdoc generation
[9781](https://github.com/flutter/engine/pull/9781) SendPlatformMessage allow null message value
[9797](https://github.com/flutter/engine/pull/9797) Remove breaking asserts
[9808](https://github.com/flutter/engine/pull/9808) Document FontFeature class
[9809](https://github.com/flutter/engine/pull/9809) Document //flutter/shell/common/rasterizer
[9813](https://github.com/flutter/engine/pull/9813) Made Picture::toImage happen on the IO thread with no need for an onscreen surface.
[9815](https://github.com/flutter/engine/pull/9815) Made the persistent cache's directory a const pointer.
[9816](https://github.com/flutter/engine/pull/9816) Only release the image data in the unit-test once Skia has accepted ownership of it.
[9825](https://github.com/flutter/engine/pull/9825) In a single frame codec, release the encoded image buffer after giving it to the decoder
[9828](https://github.com/flutter/engine/pull/9828) Make the virtual display's window translucent
[9847](https://github.com/flutter/engine/pull/9847) Started adding the engine hash to frameworks' Info.plist.
[9849](https://github.com/flutter/engine/pull/9849) Preserve the alpha for VD content by setting a transparent background.
[9850](https://github.com/flutter/engine/pull/9850) Add multi-line flag to semantics
[9851](https://github.com/flutter/engine/pull/9851) Add a macro for prefixing embedder.h symbols
[9855](https://github.com/flutter/engine/pull/9855) Fix missing assignment to _allowHeadlessExecution
[9859](https://github.com/flutter/engine/pull/9859) Fix justify for RTL paragraphs.
[9867](https://github.com/flutter/engine/pull/9867) Fixed error in generated xml Info.plist.
[9873](https://github.com/flutter/engine/pull/9873) Add clang version to Info.plist
[9875](https://github.com/flutter/engine/pull/9875) Simplify buildtools
[9890](https://github.com/flutter/engine/pull/9890) Log dlopen errors only in debug mode
[9893](https://github.com/flutter/engine/pull/9893) Removed logic from FlutterAppDelegate into FlutterPluginAppLifeCycleDelegate
[9894](https://github.com/flutter/engine/pull/9894) Add the isMultiline semantics flag to values
[9896](https://github.com/flutter/engine/pull/9896) Capture stderr for ninja command
[9901](https://github.com/flutter/engine/pull/9901) Handle decompressed images in InstantiateImageCodec
[9905](https://github.com/flutter/engine/pull/9905) Respect EXIF information while decompressing images.
[9906](https://github.com/flutter/engine/pull/9906) Update libcxx & libcxxabi to HEAD in prep for compiler upgrade.
[9919](https://github.com/flutter/engine/pull/9919) Removed unused method.
[9920](https://github.com/flutter/engine/pull/9920) Fix caching of Locale.toString
[9922](https://github.com/flutter/engine/pull/9922) Split out lifecycle protocol
[9923](https://github.com/flutter/engine/pull/9923) Fix failure of the onReportTimings window hook test
[9924](https://github.com/flutter/engine/pull/9924) Don't try to use unset assets_dir setting
[9925](https://github.com/flutter/engine/pull/9925) Fix the geometry test to reflect that OffsetBase comparison operators are a partial ordering
[9927](https://github.com/flutter/engine/pull/9927) Update Buildroot Version
[9929](https://github.com/flutter/engine/pull/9929) Update the exception thrown for invalid data in the codec test
[9931](https://github.com/flutter/engine/pull/9931) Fix reentrancy handling in SingleFrameCodec
[9932](https://github.com/flutter/engine/pull/9932) Exit flutter_tester with an error code on an unhandled exception
[9934](https://github.com/flutter/engine/pull/9934) Updates to the engine test runner script
[9935](https://github.com/flutter/engine/pull/9935) Fix backspace crash on Chinese devices (#9734)
[9936](https://github.com/flutter/engine/pull/9936) Move development.key from buildroot
[9937](https://github.com/flutter/engine/pull/9937) [platform view] do not make clipping view and interceptor view clipToBounds
[9938](https://github.com/flutter/engine/pull/9938) Removed PlatformViewsController if-statements from TextInputPlugin (#34286).
[9939](https://github.com/flutter/engine/pull/9939) Added hasRenderedFirstFrame() to old FlutterView for Espresso (#36211).
[9948](https://github.com/flutter/engine/pull/9948) [glfw] Enables replies on binary messenger in glfw embedder
[9958](https://github.com/flutter/engine/pull/9958) Clean up cirrus.yml file a little
[9961](https://github.com/flutter/engine/pull/9961) Fix return type of assert function in gradient_test
[9977](https://github.com/flutter/engine/pull/9977) Fix flutter/flutter #34791
[9987](https://github.com/flutter/engine/pull/9987) Update GN to git_revision:152c5144ceed9592c20f0c8fd55769646077569b
[10012](https://github.com/flutter/engine/pull/10012) Undelete used method
[10021](https://github.com/flutter/engine/pull/10021) Added a DartExecutor API for querying ## of pending channel callbacks
[10056](https://github.com/flutter/engine/pull/10056) Update .cirrus.yml
[10063](https://github.com/flutter/engine/pull/10063) Track clusters and return cluster boundaries in getGlyphPositionForCoordinates (emoji fix)
[10064](https://github.com/flutter/engine/pull/10064) Disable DartLifecycleTest::ShuttingDownTheVMShutsDownAllIsolates in runtime_unittests.
[10068](https://github.com/flutter/engine/pull/10068) Fixed memory leak with engine registrars.
[10069](https://github.com/flutter/engine/pull/10069) Enable consts from environment in DDK for flutter_web
[10073](https://github.com/flutter/engine/pull/10073) Basic structure for flutter_jit_runner far
[10074](https://github.com/flutter/engine/pull/10074) Change ParagraphBuilder to replace the parent style's font families with the child style's font families
[10075](https://github.com/flutter/engine/pull/10075) Change flutter runner target for LUCI
[10078](https://github.com/flutter/engine/pull/10078) One more luci fix
[10109](https://github.com/flutter/engine/pull/10109) Cache font family lookups that fail to obtain a font collection
[10127](https://github.com/flutter/engine/pull/10127) Track detailed LibTxt metrics
[10128](https://github.com/flutter/engine/pull/10128) Started linking the test targets against Flutter.
[10151](https://github.com/flutter/engine/pull/10151) [fucshia] fix name to reflect the cmx file
[10155](https://github.com/flutter/engine/pull/10155) src/third_party/dart a2aec5eb06...86dba81dec
[10172](https://github.com/flutter/engine/pull/10172) [dart_runner] Rename dart to dart runner
[10176](https://github.com/flutter/engine/pull/10176) Add suggested Java changes from flutter roll
[10178](https://github.com/flutter/engine/pull/10178) Removed unnecessary call to find the App.framework.
[10179](https://github.com/flutter/engine/pull/10179) [dart_runner] dart jit runner and dart jit product runner
[10195](https://github.com/flutter/engine/pull/10195) Allow embedder controlled composition of Flutter layers.
[10235](https://github.com/flutter/engine/pull/10235) Deprecate FlutterView#enableTransparentBackground
[10242](https://github.com/flutter/engine/pull/10242) Remove Dead Scenic Clipping Code Path.
[10265](https://github.com/flutter/engine/pull/10265) [dart-roll] Roll dart sdk to 80c4954d4d1d2a257005793d83b601f3ff2997a2
[10273](https://github.com/flutter/engine/pull/10273) Remove one last final call to AddPart()
[10282](https://github.com/flutter/engine/pull/10282) Export FFI from sky_engine.
[10295](https://github.com/flutter/engine/pull/10295) Fix memory overrun in minikin patch
[10296](https://github.com/flutter/engine/pull/10296) fix CI
[10297](https://github.com/flutter/engine/pull/10297) Ensure that the SingleFrameCodec stays alive until the ImageDecoder invokes its callback
[10298](https://github.com/flutter/engine/pull/10298) Fix red build again
[10303](https://github.com/flutter/engine/pull/10303) Make tree green for real this time, I promise.
[10414](https://github.com/flutter/engine/pull/10414) expose max depth on Window
[10419](https://github.com/flutter/engine/pull/10419) Make kernel compiler use host toolchain
[10423](https://github.com/flutter/engine/pull/10423) Fix mac gen_snapshot uploader
[10430](https://github.com/flutter/engine/pull/10430) Add copy_gen_snapshots.py tool
[10477](https://github.com/flutter/engine/pull/10477) Add #else, #endif condition comments
[10479](https://github.com/flutter/engine/pull/10479) Delete unused create_macos_gen_snapshot.py script
[10485](https://github.com/flutter/engine/pull/10485) Remove semi-redundant try-jobs.
[10629](https://github.com/flutter/engine/pull/10629) Fix engine platformviewscontroller leak
[10637](https://github.com/flutter/engine/pull/10637) Document the thread test fixture.
[10644](https://github.com/flutter/engine/pull/10644) [flutter_runner] Port: Add connectToService, wrapping fdio_ns_connect.
[10652](https://github.com/flutter/engine/pull/10652) Allow embedders to control Dart VM lifecycle on engine shutdown.
[10674](https://github.com/flutter/engine/pull/10674) When setting up AOT snapshots from symbol references, make buffer sizes optional.
[10675](https://github.com/flutter/engine/pull/10675) Improvements to the flutter GDB script
[10773](https://github.com/flutter/engine/pull/10773) Remove use of the deprecated AccessibilityNodeInfo boundsInParent API
[10776](https://github.com/flutter/engine/pull/10776) rename stub_ui to web_ui
[10780](https://github.com/flutter/engine/pull/10780) [flutter_runner] Improve frame scheduling
[10781](https://github.com/flutter/engine/pull/10781) [flutter] Create the compositor context on the GPU task runner.
[10782](https://github.com/flutter/engine/pull/10782) Update license script to handle ANGLE
[10783](https://github.com/flutter/engine/pull/10783) Make firebase test more LUCI friendly
[10786](https://github.com/flutter/engine/pull/10786) Remove 3 semi-redundant try-jobs
[10787](https://github.com/flutter/engine/pull/10787) Change call to |AddPart| to |AddChild|
[10788](https://github.com/flutter/engine/pull/10788) Wire up a concurrent message loop backed SkExecutor for Skia.
[10797](https://github.com/flutter/engine/pull/10797) Rename artifacts so they match the Maven convention
[10799](https://github.com/flutter/engine/pull/10799) Add a test for creating images from bytes.
[10808](https://github.com/flutter/engine/pull/10808) Remove flutter_kernel_sdk dart script
[10809](https://github.com/flutter/engine/pull/10809) [dart:zircon] Porting Cache re-usable handle wait objects
[10815](https://github.com/flutter/engine/pull/10815) Return an empty mapping for an empty file asset
[10816](https://github.com/flutter/engine/pull/10816) Add firstFrameDidRender to FlutterViewController
[10823](https://github.com/flutter/engine/pull/10823) Expose isolateId for engine
[10941](https://github.com/flutter/engine/pull/10941) Report test failures in run_tests.py
[10952](https://github.com/flutter/engine/pull/10952) Change SemanticsNode#children lists to be non-null
[10955](https://github.com/flutter/engine/pull/10955) Fix format
[10956](https://github.com/flutter/engine/pull/10956) Increase the license block scan from 5k to 6k
[11002](https://github.com/flutter/engine/pull/11002) Remove a tracing macro with a dangling pointer
[11004](https://github.com/flutter/engine/pull/11004) Trace RasterCacheResult::Draw
[11005](https://github.com/flutter/engine/pull/11005) Drop firebase test from Cirrus
[11007](https://github.com/flutter/engine/pull/11007) Update [README.md](http://readme.md/)
[11011](https://github.com/flutter/engine/pull/11011) Initialize the engine in the running state to match the animator's default state
[11012](https://github.com/flutter/engine/pull/11012) Remove the ParagraphImpl class from the text API
[11013](https://github.com/flutter/engine/pull/11013) Remove ability to override mac_sdk_path in flutter/tools/gn
[11024](https://github.com/flutter/engine/pull/11024) Add _glfw versions of the GLFW desktop libraries
[11027](https://github.com/flutter/engine/pull/11027) Fix first frame logic
[11029](https://github.com/flutter/engine/pull/11029) Disable a deprecation warning for use of a TaskDescription constructor for older platforms
[11033](https://github.com/flutter/engine/pull/11033) remove OS version
[11034](https://github.com/flutter/engine/pull/11034) Show all license diffs
[11038](https://github.com/flutter/engine/pull/11038) Make JIT work on iPhone armv7
[11040](https://github.com/flutter/engine/pull/11040) Hide verbose dart snapshot during run_test.py
[11041](https://github.com/flutter/engine/pull/11041) Add a BroadcastStream to FrameTiming
[11046](https://github.com/flutter/engine/pull/11046) Add ccls config files to .gitignore
[11052](https://github.com/flutter/engine/pull/11052) Remove unused dstColorSpace argument to MakeCrossContextFromPixmap
[11056](https://github.com/flutter/engine/pull/11056) Sort the Skia typefaces in a font style set into a consistent order
[11062](https://github.com/flutter/engine/pull/11062) Provide a placeholder queue ID for the custom embedder task runner.
[11067](https://github.com/flutter/engine/pull/11067) Minor update to the Robolectric test harness
[11068](https://github.com/flutter/engine/pull/11068) More updates to the Robolectric test harness
[11075](https://github.com/flutter/engine/pull/11075) [dynamic_thread_merging] Resubmit only on the frame where the merge
## Tools
As always, the end-to-end experience for Flutter relies heavily on its tools. With that in mind, in addition to the PRs listed below, which focus on the flutter CLI tool, you should also check out the following releases for the IntelliJ/Android Studio Flutter plugin, the VSCode Flutter plugin and Dart DevTools:
* [DevTools 0.1.6 Release Notes](https://groups.google.com/forum/#!topic/flutter-announce/x9eiBq-OZUk) - Sept 5, 2019
* [IntelliJ Plugin M39 Release Notes](https://groups.google.com/forum/?utm_medium=email&utm_source=footer#!msg/flutter-announce/HH2-z-wYMH4/Yb1mzIPWBgAJ) - Sept 3, 2019
* [VSCode Plugin v3.4](https://dartcode.org/releases/v3-4/) - Sept 3, 2019
* [DevTools 0.1.5 Release Notes](https://groups.google.com/forum/#!searchin/flutter-announce/release$20notes|sort:date/flutter-announce/_tBeov94GEk/8IMoZnV0DQAJ) - Aug 5, 2019
* [VSCode Plugin v3.3](https://dartcode.org/releases/v3-3/) - Aug 2, 2019
* [IntelliJ Plugin M38 Release Notes](https://groups.google.com/forum/#!searchin/flutter-announce/intellij|sort:date/flutter-announce/-LQPz3C3JAM/ZR2WnOklEQAJ) - Aug 2, 2019
* [DevTools 0.1.4 Release Notes](https://groups.google.com/forum/#!searchin/flutter-announce/release$20notes|sort:date/flutter-announce/ZUcqjzEDTKc/ABZtXXOpCgAJ) - Jul 19, 2019
* [VSCode Plugin v3.2](https://dartcode.org/releases/v3-2/) - Jun 28, 2019
In addition, this release also has a lot going on under the hood to provide you with better, more actionable error messages. You can read about those details in [this blog post](https://medium.com/@taodong/e098513cecf9) from the Flutter User Experience team.
[32511](https://github.com/flutter/flutter/pull/32511) Rendering errors with root causes in the widget layer should have a reference to the widget
[28090](https://github.com/flutter/flutter/pull/28090) Ensure that cache dirs and files have appropriate permissions
[32816](https://github.com/flutter/flutter/pull/32816) Add initial implementation of flutter assemble
[34624](https://github.com/flutter/flutter/pull/34624) Break down flutter doctor validations and results
[34785](https://github.com/flutter/flutter/pull/34785) Tweak the display name of emulators
[34794](https://github.com/flutter/flutter/pull/34794) Add emulatorID field to devices in daemon
[35084](https://github.com/flutter/flutter/pull/35084) Move findTargetDevices to DeviceManager
[35092](https://github.com/flutter/flutter/pull/35092) Add FlutterProjectFactory so that it can be overridden internally.
[35186](https://github.com/flutter/flutter/pull/35186) Make tool coverage collection resilient to sentinel coverage data
[35188](https://github.com/flutter/flutter/pull/35188) ensure test isolate is paused before collecting coverage
[35192](https://github.com/flutter/flutter/pull/35192) don't block any presubmit on coverage
[35231](https://github.com/flutter/flutter/pull/35231) Fix coverage collection
[35367](https://github.com/flutter/flutter/pull/35367) Add type to StreamChannel in generated test code.
[35392](https://github.com/flutter/flutter/pull/35392) Add timer checking and Fake http client to testbed
[35406](https://github.com/flutter/flutter/pull/35406) Refactor signal and command line handler from resident runner
[35465](https://github.com/flutter/flutter/pull/35465) Mark update-packages as non-experimental
[35467](https://github.com/flutter/flutter/pull/35467) Mark update-packages as non-experimental
[35480](https://github.com/flutter/flutter/pull/35480) Update the help message on precache command for less confusion
[35681](https://github.com/flutter/flutter/pull/35681) Disable incremental compiler in dartdevc
[35765](https://github.com/flutter/flutter/pull/35765) Use public _registerService RPC in flutter_tools
[35767](https://github.com/flutter/flutter/pull/35767) set targets of zero percent for tools codecoverage
[35839](https://github.com/flutter/flutter/pull/35839) use pub run for create test and remove [INFO] logs
[35846](https://github.com/flutter/flutter/pull/35846) move reload and restart handling into terminal
[36017](https://github.com/flutter/flutter/pull/36017) Move reporting files to reporting/
[36082](https://github.com/flutter/flutter/pull/36082) Add better handling of JSON-RPC exception
[36084](https://github.com/flutter/flutter/pull/36084) handle google3 version of pb
[36105](https://github.com/flutter/flutter/pull/36105) [flutter_tool] Catch a yaml parse failure during project creation
[36109](https://github.com/flutter/flutter/pull/36109) Catch exceptions thrown by runChecked* when possible
[36122](https://github.com/flutter/flutter/pull/36122) Make sure add-to-app build bundle from outer xcodebuild/gradlew sends analytics
[36138](https://github.com/flutter/flutter/pull/36138) Implement feature flag system for flutter tools
[36199](https://github.com/flutter/flutter/pull/36199) Don't try to flutterExit if isolate is still paused
[36208](https://github.com/flutter/flutter/pull/36208) [flutter_tool] Allow analytics without a terminal attached
[36213](https://github.com/flutter/flutter/pull/36213) Use DeviceManager instead of device to determine if device supports project.
[36218](https://github.com/flutter/flutter/pull/36218) release lock in flutter pub context
[36237](https://github.com/flutter/flutter/pull/36237) Recommend to use the final version of CDN support for the trunk specs repo.
[36240](https://github.com/flutter/flutter/pull/36240) Rearrange flutter assemble implementation
[36288](https://github.com/flutter/flutter/pull/36288) Throw exception if instantiating IOSDevice on non-mac os platform
[36289](https://github.com/flutter/flutter/pull/36289) FakeHttpClientResponse improvements
[36318](https://github.com/flutter/flutter/pull/36318) Include flutter_runner in precache artifacts.
[36327](https://github.com/flutter/flutter/pull/36327) Fix invocations of ideviceinstaller not passing DYLD_LIBRARY_PATH
[36331](https://github.com/flutter/flutter/pull/36331) Minor fixes to precache help text (attempt #2)
[36434](https://github.com/flutter/flutter/pull/36434) Clean up flutter driver device detection.
[36481](https://github.com/flutter/flutter/pull/36481) Remove untested code
[36490](https://github.com/flutter/flutter/pull/36490) [flutter_tool] Send analytics command before the command runs
[36507](https://github.com/flutter/flutter/pull/36507) Bump engine version
[36513](https://github.com/flutter/flutter/pull/36513) Fix flutter pub -v
[36556](https://github.com/flutter/flutter/pull/36556) Fix usage test to use local usage
[36560](https://github.com/flutter/flutter/pull/36560) [flutter_tools] Add some useful commands to the [README.md](http://readme.md/)
[36564](https://github.com/flutter/flutter/pull/36564) Make sure fx flutter attach can find devices
[36569](https://github.com/flutter/flutter/pull/36569) Some minor cleanup for flutter_tools
[36570](https://github.com/flutter/flutter/pull/36570) Some minor fixes to the tool_coverage tool
[36585](https://github.com/flutter/flutter/pull/36585) Place build outputs under dart tool
[36598](https://github.com/flutter/flutter/pull/36598) Expose functionality to compile dart to kernel for the VM
[36679](https://github.com/flutter/flutter/pull/36679) add line-length to flutter format command line
[36727](https://github.com/flutter/flutter/pull/36727) Add missing config to create
[36773](https://github.com/flutter/flutter/pull/36773) Expose build-dir config option
[36774](https://github.com/flutter/flutter/pull/36774) Parameterize CoverageCollector with a library name predicate
[36785](https://github.com/flutter/flutter/pull/36785) [flutter_tool] Clean up usage events and custom dimensions
[36787](https://github.com/flutter/flutter/pull/36787) Check for directory instead of path separator
[36832](https://github.com/flutter/flutter/pull/36832) Remove flaky check for analyzer message.
[37036](https://github.com/flutter/flutter/pull/37036) Build number (part after +) is documented as optional, use entire app version if not present
[37044](https://github.com/flutter/flutter/pull/37044) [flutter_tool] Make a couple file operations synchronous
[37186](https://github.com/flutter/flutter/pull/37186) [flutter_tool] Usage refactor cleanup
[37196](https://github.com/flutter/flutter/pull/37196) [flutter_tool] Catch ProcessException from 'adb devices'
[37198](https://github.com/flutter/flutter/pull/37198) [flutter_tool] Re-try sending the first crash report
[37210](https://github.com/flutter/flutter/pull/37210) do not strip symbols when building profile
[37217](https://github.com/flutter/flutter/pull/37217) hide symbols from spotlight for App.framework
[37331](https://github.com/flutter/flutter/pull/37331) [flutter_tool] Add missing toString()
[37345](https://github.com/flutter/flutter/pull/37345) [flutter_tool] Include the local timezone in analytics timestamp
[37378](https://github.com/flutter/flutter/pull/37378) Disable xcode indexing in CI via COMPILER_INDEX_STORE_ENABLE=NO argument
[37422](https://github.com/flutter/flutter/pull/37422) [flutter_tool] Additional flutter manifest yaml validation
[37440](https://github.com/flutter/flutter/pull/37440) Print message when HttpException is thrown after running flutter run
[37457](https://github.com/flutter/flutter/pull/37457) Find the app bundle when the flavor contains underscores
[37500](https://github.com/flutter/flutter/pull/37500) Avoid killing Flutter tool process (#37471)
[37512](https://github.com/flutter/flutter/pull/37512) Enable track widget creation on debug builds
[37514](https://github.com/flutter/flutter/pull/37514) [flutter_tool] Remove unintended analytics screen send
[37521](https://github.com/flutter/flutter/pull/37521) have xcodeSelectPath also catch ArgumentError
[37595](https://github.com/flutter/flutter/pull/37595) Closes #37593 Add flutter_export_environment.sh to gitignore
[37654](https://github.com/flutter/flutter/pull/37654) Add missing library to flutter tools [BUILD.gn](http://build.gn/)
[37731](https://github.com/flutter/flutter/pull/37731) Add metadata to indicate if the host app contains a Flutter module
[37735](https://github.com/flutter/flutter/pull/37735) Remove unused no-build flag from the flutter run command
[37743](https://github.com/flutter/flutter/pull/37743) Handle thrown maps and rejects from fe server
[37792](https://github.com/flutter/flutter/pull/37792) Disable the progress bar when downloading the Dart SDK via Invoke-WebRequest
[37863](https://github.com/flutter/flutter/pull/37863) Expose the timeline event names so they can be used in other systems that do tracing
[37871](https://github.com/flutter/flutter/pull/37871) Catch failure to create directory in cache
[37900](https://github.com/flutter/flutter/pull/37900) Listen to ExtensionEvent instead of TimelineEvent
[37958](https://github.com/flutter/flutter/pull/37958) Catch FormatException caused by bad simctl output
[37966](https://github.com/flutter/flutter/pull/37966) Remove ephemeral directories during flutter clean
[37994](https://github.com/flutter/flutter/pull/37994) Remove no-constant-update-2018, the underlying issue has been resolved.
[38101](https://github.com/flutter/flutter/pull/38101) Catch filesystem exception from flutter create
[38102](https://github.com/flutter/flutter/pull/38102) Fix type error hidden by implicit downcasts
[38296](https://github.com/flutter/flutter/pull/38296) use common emulator/device list
[38339](https://github.com/flutter/flutter/pull/38339) [flutter_tool] Flip create language defaults to swift and kotlin
[38342](https://github.com/flutter/flutter/pull/38342) remove bsdiff from [BUILD.gn](http://build.gn/)
[38353](https://github.com/flutter/flutter/pull/38353) [flutter_tool] Observatory connection error handling cleanup
[38472](https://github.com/flutter/flutter/pull/38472) [flutter_tool] Fix bug in manifest yaml validation
[38486](https://github.com/flutter/flutter/pull/38486) Catch errors thrown into the Zone by json_rpc
[38490](https://github.com/flutter/flutter/pull/38490) Fix publish cmd
[38497](https://github.com/flutter/flutter/pull/38497) handle unexpected exit from frontend server
[38575](https://github.com/flutter/flutter/pull/38575) fix rpc exception for real
[38586](https://github.com/flutter/flutter/pull/38586) Don't reload if compilation has errors
[38637](https://github.com/flutter/flutter/pull/38637) [flutter_tool] Throw tool exit on malformed storage url override
[38652](https://github.com/flutter/flutter/pull/38652) Kill dead code
[36860](https://github.com/flutter/flutter/pull/36860) Remove Chain terse parsing
[36874](https://github.com/flutter/flutter/pull/36874) Adjust phrasing of features
[36884](https://github.com/flutter/flutter/pull/36884) Unbreak build_runner
## Full PR List
You can see the full list of merged PRs in this release [here](/release/release-notes/changelogs/changelog-1.9.1).
| website/src/release/release-notes/release-notes-1.9.1.md/0 | {
"file_path": "website/src/release/release-notes/release-notes-1.9.1.md",
"repo_id": "website",
"token_count": 22069
} | 1,298 |
---
layout: null
sitemap: false
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% assign collections = site.collections | map: 'label' | join: ',' | prepend: 'pages,' | split: ',' | sort -%}
{%- for colName in collections -%}
{% assign pages = site[colName] | sort: 'url' -%}
{%- for page in pages -%}
{%- unless page.sitemap == false -%}
<url>
<loc>{{ site.url | append: page.url | regex_replace: '/index(\.html)?$|\.html$|/$' }}</loc>
<lastmod>
{%- if page.sitemap.lastmod -%}
{{ page.sitemap.lastmod | date: "%Y-%m-%d" }}
{%- else -%}
{{ site.now | default: page.date | default: site.time | date_to_xmlschema }}
{%- endif -%}
</lastmod>
<changefreq>{{ page.sitemap.changefreq | default: 'monthly' }}</changefreq>
{% if page.sitemap.priority -%}
<priority>{{ page.sitemap.priority }}</priority>
{%- endif -%}
</url>
{% endunless -%}
{%- endfor -%}
{%- endfor -%}
</urlset>
| website/src/sitemap.xml/0 | {
"file_path": "website/src/sitemap.xml",
"repo_id": "website",
"token_count": 492
} | 1,299 |
---
title: Using the CPU profiler view
description: Learn how to use the DevTools CPU profiler view.
---
{{site.alert.note}}
The CPU profiler view works with Dart CLI and mobile apps only.
Use Chrome DevTools to [analyze performance][]
of a web app.
{{site.alert.end}}
The CPU profiler view allows you to record and profile a
session from your Dart or Flutter application.
The profiler can help you solve performance problems
or generally understand your app's CPU activity.
The Dart VM collects CPU samples
(a snapshot of the CPU call stack at a single point in time)
and sends the data to DevTools for visualization.
By aggregating many CPU samples together,
the profiler can help you understand where the CPU
spends most of its time.
{{site.alert.note}}
**If you are running a Flutter application,
use a profile build to analyze performance.**
CPU profiles are not indicative of release performance
unless your Flutter application is run in profile mode.
{{site.alert.end}}
{% include_relative _profiler.md %}
[analyze performance]: {{site.developers}}/web/tools/chrome-devtools/evaluate-performance/
## Other resources
To learn how to use DevTools to analyze
the CPU usage of a compute-intensive Mandelbrot app,
check out a guided [CPU Profiler View tutorial][profiler-tutorial].
Also, learn how to analyze CPU usage when the app
uses isolates for parallel computing.
[profiler-tutorial]: {{site.medium}}/@fluttergems/mastering-dart-flutter-devtools-cpu-profiler-view-part-6-of-8-31e24eae6bf8
| website/src/tools/devtools/cpu-profiler.md/0 | {
"file_path": "website/src/tools/devtools/cpu-profiler.md",
"repo_id": "website",
"token_count": 422
} | 1,300 |
# DevTools 2.14.0 release notes
The 2.14.0 release of the Dart and Flutter DevTools
includes the following changes among other general improvements.
To learn more about DevTools, check out the
[DevTools overview](https://docs.flutter.dev/tools/devtools/overview).
## General updates
* Added a link to the new DevTools
[Discord channel](https://discord.com/channels/608014603317936148/958862085297672282)
in the About DevTools dialog -
[#4102](https://github.com/flutter/devtools/pull/4102)

## Network updates
* Added "Copy as URL" and "Copy as cURL" actions for
selected requests in the network profiler
(special thanks to [@jankuss](https://github.com/jankuss)!) -
[#4113](https://github.com/flutter/devtools/pull/4113)

## Flutter inspector updates
* Added a setting to control whether hovering over a widget
in the inspector displays its properties and values in a hover card -
[#4090](https://github.com/flutter/devtools/pull/4090)
## Debugger updates
* Added auto complete suggestions in the console
(special thanks to [@jankuss](https://github.com/jankuss)!) -
[#4062](https://github.com/flutter/devtools/pull/4062)

* Added the option to copy the full file path for a selected library -
[#4147](https://github.com/flutter/devtools/pull/4147)
* Fixed formatting in the debugger exception menu -
[#4066](https://github.com/flutter/devtools/pull/4066)
## Memory updates
* Fixed formatting for memory values in the heap tree view -
[#4153](https://github.com/flutter/devtools/pull/4153)
* Fixed a bug that was preventing GC events from
showing up in the memory chart -
[#4131](https://github.com/flutter/devtools/pull/4131)
## Performance updates
* Warn users that the rendering layer toggles in the
"More Debugging Options" menu are not available for profile mode apps -
[#4075](https://github.com/flutter/devtools/pull/4075)
## Full commit history
To find a complete list of changes since the previous release,
check out
[the diff on GitHub](https://github.com/flutter/devtools/compare/v2.13.1...v2.14.0).
| website/src/tools/devtools/release-notes/release-notes-2.14.0-src.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.14.0-src.md",
"repo_id": "website",
"token_count": 753
} | 1,301 |
# DevTools 2.22.2 release notes
The 2.22.2 release of the Dart and Flutter DevTools
includes the following changes among other general improvements.
To learn more about DevTools, check out the
[DevTools overview](https://docs.flutter.dev/tools/devtools/overview).
## General updates
- Prevent crashes if there is no main isolate -
[#5232](https://github.com/flutter/devtools/pull/5232)
## CPU profiler updates
- Display stack frame URI inline with method name to
ensure the URI is always visible in deeply nested trees -
[#5181](https://github.com/flutter/devtools/pull/5181)

- Add the ability to filter by method name or source URI -
[#5204](https://github.com/flutter/devtools/pull/5204)
## Memory updates
- Change filter default to show only project and 3rd party dependencies -
[#5201](https://github.com/flutter/devtools/pull/5201).

- Support expression evaluation in console for running application -
[#5248](https://github.com/flutter/devtools/pull/5248).

- Add column `Persisted` for memory diffing -
[#5290](https://github.com/flutter/devtools/pull/5290)

## Debugger updates
- Add support for browser navigation history when
navigating using the File Explorer -
[#4906](https://github.com/flutter/devtools/pull/4906)
- Designate positional fields for `Record` types
with the getter syntax beginning at `$1` -
[#5272](https://github.com/flutter/devtools/pull/5272)
- Fix variable inspection for `Map` and `List` instances -
[#5320](https://github.com/flutter/devtools/pull/5320)

- Fix variable inspection for `Set` instances -
[#5323](https://github.com/flutter/devtools/pull/5323)

## Network profiler updates
- Improve reliability and performance of the Network tab -
[#5056](https://github.com/flutter/devtools/pull/5056)
## Full commit history
To find a complete list of changes since the previous release,
check out
[the diff on GitHub](https://github.com/flutter/devtools/compare/v2.21.1...v2.22.2).
| website/src/tools/devtools/release-notes/release-notes-2.22.2-src.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.22.2-src.md",
"repo_id": "website",
"token_count": 801
} | 1,302 |
# DevTools 2.28.3 release notes
The 2.28.3 release of the Dart and Flutter DevTools
includes the following changes among other general improvements.
To learn more about DevTools, check out the
[DevTools overview](https://docs.flutter.dev/tools/devtools/overview).
This was a cherry-pick release on top of DevTools 2.28.2.
To learn about the improvements included in DevTools 2.28.2, please read the
[release notes](/tools/devtools/release-notes/release-notes-2.28.2).
## General updates
* Added a link to the new "Dive in to DevTools" YouTube
[video](https://www.youtube.com/watch?v=_EYk-E29edo) in the bottom status bar.
This video provides a brief tutorial for each DevTools screen.
[#6554](https://github.com/flutter/devtools/pull/6554)

* Added a workaround to fix copy button functionality in VSCode. - [#6598](https://github.com/flutter/devtools/pull/6598)
## Performance updates
* Disable the Raster Stats tool for the Impeller backend
since it is not supported. - [#6616](https://github.com/flutter/devtools/pull/6616)
## VS Code Sidebar updates
* When using VS Code with a light theme, the embedded sidebar provided by
DevTools will now also show in the light theme. - [#6581](https://github.com/flutter/devtools/pull/6581)
## Full commit history
To find a complete list of changes in this release, check out the
[DevTools git log](https://github.com/flutter/devtools/tree/v2.28.3).
| website/src/tools/devtools/release-notes/release-notes-2.28.3-src.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.28.3-src.md",
"repo_id": "website",
"token_count": 479
} | 1,303 |
# DevTools 2.7.0 release notes
The 2.7.0 release of the Dart and Flutter DevTools
includes the following changes among other general improvements.
To learn more about DevTools, check out the
[DevTools overview](https://docs.flutter.dev/tools/devtools/overview).
## General updates
* Improvements for initial page load time -
[#3309](https://github.com/flutter/devtools/pull/3309)
* Fix a couple scrollbar-related issues -
[#3393](https://github.com/flutter/devtools/pull/3393),
[#3401](https://github.com/flutter/devtools/pull/3401)
## Debugger updates
* Add an open file dialog (ctrl / cmd + p) -
[#3342](https://github.com/flutter/devtools/pull/3342),
[#3354](https://github.com/flutter/devtools/pull/3354),
[#3371](https://github.com/flutter/devtools/pull/3371),
[#3384](https://github.com/flutter/devtools/pull/3384)

* Add a copy button to the call stack view -
[#3334](https://github.com/flutter/devtools/pull/3334)

## CPU profiler updates
* Added functionality to load an app startup profile for Flutter apps.
This profile will contain CPU samples from the initialization
of the Dart VM up until the first Flutter frame has been rendered -
[#3357](https://github.com/flutter/devtools/pull/3357)

When the app startup profile has been loaded,
you will see that the "AppStartUp" user tag is selected for the profile.
You can also load the app startup profile
by selecting this user tag filter, when present,
in the list of available user tags.

* Added multi-isolate support.
Select which isolate you want to profile
from the isolate selector at the bottom of the page -
[#3362](https://github.com/flutter/devtools/pull/3362)

* Add class names to CPU stack frames in the profiler -
[#3385](https://github.com/flutter/devtools/pull/3385)

## Full commit history
To find a complete list of changes since the previous release,
check out
[the diff on GitHub](https://github.com/flutter/devtools/compare/v2.6.0...v2.7.0).
| website/src/tools/devtools/release-notes/release-notes-2.7.0-src.md/0 | {
"file_path": "website/src/tools/devtools/release-notes/release-notes-2.7.0-src.md",
"repo_id": "website",
"token_count": 827
} | 1,304 |
---
title: Visual Studio Code
short-title: VS Code
description: How to develop Flutter apps in Visual Studio Code.
---
<ul class="nav nav-tabs" id="ide" role="tablist">
<li class="nav-item">
<a class="nav-link" href="/tools/android-studio" role="tab" aria-selected="false">Android Studio and IntelliJ</a>
</li>
<li class="nav-item">
<a class="nav-link active" role="tab" aria-selected="true">Visual Studio Code</a>
</li>
</ul>
## Installation and setup
Follow the [Set up an editor][] instructions to
install the Dart and Flutter extensions
(also called plugins).
### Updating the extension {#updating}
Updates to the extensions are shipped on a regular basis.
By default, VS Code automatically updates extensions when
updates are available.
To install updates yourself:
1. Click **Extensions** in the Side Bar.
1. If the Flutter extension has an available update,
click **Update** and then **Reload**.
1. Restart VS Code.
## Creating projects
There are a couple ways to create a new project.
### Creating a new project
To create a new Flutter project from the Flutter
starter app template:
1. Go to **View** <span aria-label="and then">></span>
**Command Palette...**.
You can also press <kbd>Ctrl</kbd> / <kbd>Cmd</kbd> +
<kbd>Shift</kbd> + <kbd>P</kbd>.
1. Type `flutter`.
1. Select the **Flutter: New Project**.
1. Press <kbd>Enter</kbd>.
1. Select **Application**.
1. Press <kbd>Enter</kbd>.
1. Select a **Project location**.
1. Enter your desired **Project name**.
### Opening a project from existing source code
To open an existing Flutter project:
1. Go to **File** <span aria-label="and then">></span> **Open**.
You can also press <kbd>Ctrl</kbd> / <kbd>Cmd</kbd> + <kbd>O</kbd>
1. Browse to the directory holding your existing
Flutter source code files.
1. Click **Open**.
## Editing code and viewing issues
The Flutter extension performs code analysis.
The code analysis can:
- Highlight language syntax
- Complete code based on rich type analysis
- Navigate to type declarations
- Go to **Go** <span aria-label="and then">></span> **Go to Definition**.
- You can also press <kbd>F12</kbd>.
- Find type usages.
- Press <kbd>Shift</kbd> + <kbd>F12</kbd>.
- View all current source code problems.
- Go to **View** <span aria-label="and then">></span> **Problems**.
- You can also press <kbd>Ctrl</kbd> / <kbd>Cmd</kbd> +
<kbd>Shift</kbd> + <kbd>M</kbd>.
- The Problems pane displays any analysis issues:<br>
{:.mw-100.pt-1}
## Running and debugging
{{site.alert.note}}
You can debug your app in a couple of ways.
- Using [DevTools][], a suite of debugging and profiling
tools that run in a browser.
- Using VS Code's built-in debugging features,
such as setting breakpoints.
The instructions below describe features available in VS Code.
For information on using launching DevTools, see
[Running DevTools from VS Code][] in the [DevTools][] docs.
{{site.alert.end}}
Start debugging by clicking **Run > Start Debugging**
from the main IDE window, or press <kbd>F5</kbd>.
### Selecting a target device
When a Flutter project is open in VS Code,
you should see a set of Flutter specific entries in the status bar,
including a Flutter SDK version and a
device name (or the message **No Devices**):<br>
![VS Code status bar][]{:.mw-100.pt-1}
{{site.alert.note}}
- If you do not see a Flutter version number or device info,
your project might not have been detected as a Flutter project.
Ensure that the folder that contains your `pubspec.yaml` is
inside a VS Code **Workspace Folder**.
- If the status bar reads **No Devices**, Flutter has not been
able to discover any connected iOS or Android devices or simulators.
You need to connect a device, or start a simulator or emulator,
to proceed.
{{site.alert.end}}
The Flutter extension automatically selects the last device connected.
However, if you have multiple devices/simulators connected, click
**device** in the status bar to see a pick-list
at the top of the screen. Select the device you want to use for
running or debugging.
{{site.alert.secondary}}
**Are you developing for macOS or iOS remotely using
Visual Studio Code Remote?** If so, you might need to manually
unlock the keychain. For more information, see this
[question on StackExchange][].
[question on StackExchange]: https://superuser.com/questions/270095/when-i-ssh-into-os-x-i-dont-have-my-keychain-when-i-use-terminal-i-do/363840#363840
{{site.alert.end}}
### Run app without breakpoints
Go to **Run** > **Start Without Debugging**.
You can also press <kbd>Ctrl</kbd> + <kbd>F5</kbd>.
### Run app with breakpoints
1. If desired, set breakpoints in your source code.
1. Click **Run** <span aria-label="and then">></span> **Start Debugging**.
You can also press <kbd>F5</kbd>.
The status bar turns orange to show you are in a debug session.<br>
{:.mw-100.pt-1}
- The left **Debug Sidebar** shows stack frames and variables.
- The bottom **Debug Console** pane shows detailed logging output.
- Debugging is based on a default launch configuration.
To customize, click the cog at the top of the
**Debug Sidebar** to create a `launch.json` file.
You can then modify the values.
### Run app in debug, profile, or release mode
Flutter offers many different build modes to run your app in.
You can read more about them in [Flutter's build modes][].
1. Open the `launch.json` file in VS Code.
If you don't have a `launch.json` file:
{: type="a"}
1. Go to **View** <span aria-label="and then">></span> **Run**.
You can also press <kbd>Ctrl</kbd> / <kbd>Cmd</kbd> +
<kbd>Shift</kbd> + <kbd>D</kbd>
The **Run and Debug** panel displays.
1. Click **create a launch.json file**.
1. In the `configurations` section,
change the `flutterMode` property to
the build mode you want to target.
For example, if you want to run in debug mode,
your `launch.json` might look like this:
```json
"configurations": [
{
"name": "Flutter",
"request": "launch",
"type": "dart",
"flutterMode": "debug"
}
]
```
1. Run the app through the **Run** panel.
## Fast edit and refresh development cycle
Flutter offers a best-in-class developer cycle enabling you
to see the effect of your changes almost instantly with the
_Stateful Hot Reload_ feature.
To learn more, check out [Hot reload][].
## Advanced debugging
You might find the following advanced debugging tips useful:
### Debugging visual layout issues
During a debug session,
several additional debugging commands are added to the
[Command Palette][] and to the [Flutter inspector][].
When space is limited, the icon is used as the visual
version of the label.
<dl markdown="1">
<dt markdown="1"> **Toggle Baseline Painting** {:width="20px"}</dt>
<dd>Causes each RenderBox to paint a line at each of its baselines.</dd>
<dt markdown="1"> **Toggle Repaint Rainbow** {:width="20px"}</dt>
<dd>Shows rotating colors on layers when repainting.</dd>
<dt markdown="1">**Toggle Slow Animations** {:width="20px"}</dt>
<dd>Slows down animations to enable visual inspection.</dd>
<dt markdown="1">**Toggle Debug Mode Banner** {:width="20px"}</dt>
<dd>Hides the debug mode banner even when running a debug build.</dd>
</dl>
### Debugging external libraries
By default, debugging an external library is disabled
in the Flutter extension. To enable:
1. Select **Settings > Extensions > Dart Configuration**.
2. Check the `Debug External Libraries` option.
## Editing tips for Flutter code
If you have additional tips we should share, [let us know][]!
### Assists & quick fixes
Assists are code changes related to a certain code identifier.
A number of these are available when the cursor is placed on a
Flutter widget identifier, as indicated by the yellow lightbulb icon.
To invoke the assist, click the lightbulb as shown in the following screenshot:
{:width="467px"}
You can also press <kbd>Ctrl</kbd> / <kbd>Cmd</kbd> + <kbd>.</kbd>
Quick fixes are similar,
only they are shown with a piece of code has an error and they
can assist in correcting it.
**Wrap with new widget assist**
: This can be used when you have a widget that you want to wrap
in a surrounding widget, for example if you want to wrap a
widget in a `Row` or `Column`.
**Wrap widget list with new widget assist**
: Similar to the assist above, but for wrapping an existing
list of widgets rather than an individual widget.
**Convert child to children assist**
: Changes a child argument to a children argument,
and wraps the argument value in a list.
**Convert StatelessWidget to StatefulWidget assist**
: Changes the implementation of a `StatelessWidget` to that of
a `StatefulWidget`, by creating the `State` class and moving
the code there.
### Snippets
Snippets can be used to speed up entering typical code structures.
They are invoked by typing their prefix,
and then selecting from the code completion window:
{:width="100%"}
The Flutter extension includes the following snippets:
- Prefix `stless`: Create a new subclass of -StatelessWidget`.
- Prefix `stful`: Create a new subclass of `StatefulWidget`
and its associated State subclass.
- Prefix `stanim`: Create a new subclass of `StatefulWidget`,
and its associated State subclass including a field initialized
with an `AnimationController`.
You can also define custom snippets by executing
**Configure User Snippets** from the [Command Palette][].
### Keyboard shortcuts
**Hot reload**
: To perform a hot reload during a debug session,
click **Hot Reload** on the **Debug Toolbar**.
You can also press <kbd>Ctrl</kbd> + <kbd>F5</kbd>
(<kbd>Cmd</kbd> + <kbd>F5</kbd> on macOS).
Keyboard mappings can be changed by executing the
**Open Keyboard Shortcuts** command from the [Command Palette][].
### Hot reload vs. hot restart
Hot reload works by injecting updated source code files into the
running Dart VM (Virtual Machine). This includes not only
adding new classes, but also adding methods and fields to
existing classes, and changing existing functions.
A few types of code changes cannot be hot reloaded though:
- Global variable initializers
- Static field initializers
- The `main()` method of the app
For these changes, restart your app without
ending your debugging session. To perform a hot restart,
run the **Flutter: Hot Restart** command from the [Command Palette][].
You can also press
<kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>F5</kbd>
or <kbd>Cmd</kbd> + <kbd>Shift</kbd> + <kbd>F5</kbd> on macOS.
## Troubleshooting
### Known issues and feedback
All known bugs are tracked in the issue tracker:
[Dart and Flutter extensions GitHub issue tracker][issue tracker].
We welcome feedback,
both on bugs/issues and feature requests.
Prior to filing new issues:
- Do a quick search in the issue trackers to see if the
issue is already tracked.
- Make sure you are [up to date](#updating) with the most recent
version of the plugin.
When filing new issues, include [flutter doctor][] output.
[Command Palette]: https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette
[DevTools]: /tools/devtools
[flutter doctor]: /resources/bug-reports/#provide-some-flutter-diagnostics
[Flutter inspector]: /tools/devtools/inspector
[Flutter's build modes]: /testing/build-modes
[Hot reload]: /tools/hot-reload
[let us know]: {{site.repo.this}}/issues/new
[issue tracker]: {{site.github}}/Dart-Code/Dart-Code/issues
[Running DevTools from VS Code]: /tools/devtools/vscode
[Set up an editor]: /get-started/editor?tab=vscode
[VS Code status bar]: /assets/images/docs/tools/vs-code/device_status_bar.png
| website/src/tools/vs-code.md/0 | {
"file_path": "website/src/tools/vs-code.md",
"repo_id": "website",
"token_count": 3804
} | 1,305 |
---
title: Material Design for Flutter
description: Learn about Material Design for Flutter.
---
Material Design is an open-source design system built
and supported by Google designers and developers.
The latest version, Material 3, enables personal,
adaptive, and expressive experiences—from dynamic color
and enhanced accessibility, to foundations for
large screen layouts, and design tokens.
{{site.alert.warning}}
As of the Flutter 3.16 release, **Material 3 is
enabled by default**. For now, you can opt out
of Material 3 by setting the [`useMaterial3`][] property
to `false`. But be aware that the `useMaterial3`
property and support for Material 2
will eventually be deprecated according to
Flutter's [deprecation policy][].
{{site.alert.end}}
For _most_ Flutter widgets, upgrading to Material 3
is seamless. But _some_ widgets couldn't be
updated—entirely new implementations were needed,
such as [`NavigationBar`][].
You must make these changes to your code manually.
Until your app is entirely updated,
the UI might look or act a bit strange.
You can find the entirely new Material components by
visiting the [Affected widgets][] page.
[Affected widgets]: {{site.api}}/flutter/material/ThemeData/useMaterial3.html#affected-widgets
[deprecation policy]: /release/compatibility-policy#deprecation-policy
[demo]: https://flutter.github.io/samples/web/material_3_demo/#/
[`NavigationBar`]: {{site.api}}/flutter/material/NavigationBar-class.html
[`useMaterial3`]: {{site.api}}/flutter/material/ThemeData/useMaterial3.html
Explore the updated components, typography, color system,
and elevation support with the
[interactive Material 3 demo][demo]:
<iframe src="https://flutter.github.io/samples/web/material_3_demo/#/" width="100%" height="600px" title="Material 3 Demo App"></iframe>
## More information
{:.no_toc}
To learn more about Material Design and Flutter,
check out:
* [Material.io developer documentation][]
* [Migrating a Flutter app to Material 3][] blog post by Taha Tesser
* [Umbrella issue on GitHub][]
[Material.io developer documentation]: {{site.material}}/develop/flutter
[Migrating a Flutter app to Material 3]: https://blog.codemagic.io/migrating-a-flutter-app-to-material-3/
[Umbrella issue on GitHub]: {{site.github}}//flutter/flutter/issues/91605
| website/src/ui/design/material/index.md/0 | {
"file_path": "website/src/ui/design/material/index.md",
"repo_id": "website",
"token_count": 658
} | 1,306 |
---
title: Scrolling
description: Overview of Flutter's scrolling support
---
Flutter has many built-in widgets that automatically
scroll and also offers a variety of widgets
that you can customize to create specific scrolling
behavior.
## Basic scrolling
Many Flutter widgets support scrolling out of the box
and do most of the work for you. For example,
[`SingleChildScrollView`][] automatically scrolls its
child when necessary. Other useful widgets include
[`ListView`][] and [`GridView`][].
You can check out more of these widgets on the
[scrolling page][] of the Widget catalog.
<iframe width="560" height="315" src="{{site.yt.embed}}/DbkIQSvwnZc" title="Learn how to use the Scrollbar Flutter Widget" {{site.yt.set}}></iframe>
<iframe width="560" height="315" src="{{site.yt.embed}}/KJpkjHGiI5A" title="Learn how to use the ListView Flutter Widget" {{site.yt.set}}></iframe>
### Infinite scrolling
When you have a long list of items
in your `ListView` or `GridView` (including an _infinite_ list),
you can build the items on demand
as they scroll into view. This provides a much
more performant scrolling experience.
For more information, check out
[`ListView.builder`][] or [`GridView.builder`][].
[`ListView.builder`]: {{site.api}}/flutter/widgets/ListView/ListView.builder.html
[`GridView.builder`]: {{site.api}}/flutter/widgets/GridView/GridView.builder.html
### Specialized scrollable widgets
The following widgets provide more specific scrolling
behavior.
A video on using [`DraggableScrollableSheet`][]
<iframe width="560" height="315" src="{{site.yt.embed}}/Hgw819mL_78" title="Learn how to use the DraggableScrollableSheet Flutter Widget" {{site.yt.set}}></iframe>
Turn the scrollable area into a wheel! [`ListWheelScrollView`][]
<iframe width="560" height="315" src="{{site.yt.embed}}/dUhmWAz4C7Y" title="Learn how to use the ListWheelScrollView Flutter Widget" {{site.yt.set}}></iframe>
[`DraggableScrollableSheet`]: {{site.api}}/flutter/widgets/DraggableScrollableSheet-class.html
[`GridView`]: {{site.api}}/flutter/widgets/GridView-class.html
[`ListView`]: {{site.api}}/flutter/widgets/ListView-class.html
[`ListWheelScrollView`]: {{site.api}}/flutter/widgets/ListWheelScrollView-class.html
[scrolling page]: /ui/widgets/scrolling
[`SingleChildScrollView`]: {{site.api}}/flutter/widgets/SingleChildScrollView-class.html
{% comment %}
Not yet, but coming. Two dimensional scrolling:
TableView and TreeView.
Video: {{site.yt.watch}}?v=UDZ0LPQq-n8
{% endcomment %}
## Fancy scrolling
Perhaps you want to implement _elastic_ scrolling,
also called _scroll bouncing_. Or maybe you want to
implement other dynamic scrolling effects, like parallax scrolling.
Or perhaps you want a scrolling header with very specific behavior,
such as shrinking or disappearing.
You can achieve all this and more using the
Flutter `Sliver*` classes.
A _sliver_ refers to a piece of the scrollable area.
You can define and insert a sliver into a [`CustomScrollView`][]
to have finer-grained control over that area.
For more information, check out
[Using slivers to achieve fancy scrolling][]
and the [Sliver classes][].
[`CustomScrollView`]: {{site.api}}/flutter/widgets/CustomScrollView-class.html
[Sliver classes]: /ui/widgets/layout#Sliver%20widgets
[Using slivers to achieve fancy scrolling]: /ui/layout/scrolling/slivers
## Nested scrolling widgets
How do you nest a scrolling widget
inside another scrolling widget
without hurting scrolling performance?
Do you set the `ShrinkWrap` property to true,
or do you use a sliver?
Check out the "ShrinkWrap vs Slivers" video:
<iframe width="560" height="315" src="{{site.yt.embed}}/LUqDNnv_dh0" title="Learn how to nest scrolling widgets in Flutter" {{site.yt.set}}></iframe>
| website/src/ui/layout/scrolling/index.md/0 | {
"file_path": "website/src/ui/layout/scrolling/index.md",
"repo_id": "website",
"token_count": 1143
} | 1,307 |
---
title: Material Components widgets
short-title: Material
description: >
A catalog of Flutter's widgets implementing Material 3 design guidelines.
---
{% include docs/catalogpage-material.html category="Material components" %}
| website/src/ui/widgets/material.md/0 | {
"file_path": "website/src/ui/widgets/material.md",
"repo_id": "website",
"token_count": 57
} | 1,308 |
// Copyright 2024 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:io';
import 'package:args/command_runner.dart';
import 'package:path/path.dart' as path;
import '../utils.dart';
final class TestDartCommand extends Command<int> {
static const String _verboseFlag = 'verbose';
TestDartCommand() {
argParser.addFlag(
_verboseFlag,
defaultsTo: false,
help: 'Show verbose logging.',
);
}
@override
String get description => 'Run tests on the site infra and examples.';
@override
String get name => 'test-dart';
@override
Future<int> run() async => _testDart(
verboseLogging: argResults.get<bool>(_verboseFlag, false),
);
}
Future<int> _testDart({
bool verboseLogging = false,
}) async {
final directoriesToTest = [
path.join('tool', 'flutter_site'),
...exampleProjectDirectories,
];
print('Testing code...');
final failedTests = <String>[
for (final directory in directoriesToTest)
if (!(await testsPassInDirectory(directory, verboseLogging))) directory
];
if (failedTests.isNotEmpty) {
stderr.writeln('\nError: ${failedTests.length} tests failed!');
return 1;
}
print('All tests passed successfully!');
return 0;
}
Future<bool> testsPassInDirectory(String directory, bool verboseLogging) async {
if (verboseLogging) {
print('Testing code in $directory...');
}
final flutterTestOutput = await Process.run(
'flutter',
[
'test',
'--reporter',
'expanded', // Non-animated expanded output looks better in CI and logs.
],
workingDirectory: directory,
);
if (flutterTestOutput.exitCode != 0) {
final normalOutput = flutterTestOutput.stdout.toString();
final errorOutput = flutterTestOutput.stderr.toString();
// It's ok if the test directory is not found.
if (!errorOutput.contains('No test') &&
!normalOutput.contains('Could not find package `test`') &&
!normalOutput.contains('No tests were') &&
!errorOutput.contains(RegExp(r'Test directory.*not found'))) {
stderr.write(normalOutput);
stderr.writeln('Tests in $directory failed:');
stderr.write(errorOutput);
return false;
}
if (verboseLogging) {
print('No tests found or ran in $directory.');
}
} else {
if (verboseLogging) {
print('All tests passed in $directory.');
}
}
return true;
}
| website/tool/flutter_site/lib/src/commands/test_dart.dart/0 | {
"file_path": "website/tool/flutter_site/lib/src/commands/test_dart.dart",
"repo_id": "website",
"token_count": 904
} | 1,309 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/adaptive_app/step_05/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/adaptive_app/step_05/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 0 |
include: ../../analysis_options.yaml
| codelabs/animated-responsive-layout/step_03/analysis_options.yaml/0 | {
"file_path": "codelabs/animated-responsive-layout/step_03/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 1 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/animated-responsive-layout/step_05/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/animated-responsive-layout/step_05/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 2 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import '../models/data.dart' as data;
import '../models/models.dart';
import 'email_widget.dart';
import 'search_bar.dart' as search_bar;
class EmailListView extends StatelessWidget {
const EmailListView({
super.key,
this.selectedIndex,
this.onSelected,
required this.currentUser,
});
final int? selectedIndex;
final ValueChanged<int>? onSelected;
final User currentUser;
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.symmetric(horizontal: 8.0),
child: ListView(
children: [
const SizedBox(height: 8),
search_bar.SearchBar(currentUser: currentUser),
const SizedBox(height: 8),
...List.generate(
data.emails.length,
(index) {
return Padding(
padding: const EdgeInsets.only(bottom: 8.0),
child: EmailWidget(
email: data.emails[index],
onSelected: onSelected != null
? () {
onSelected!(index);
}
: null,
isSelected: selectedIndex == index,
),
);
},
),
],
),
);
}
}
| codelabs/animated-responsive-layout/step_06/lib/widgets/email_list_view.dart/0 | {
"file_path": "codelabs/animated-responsive-layout/step_06/lib/widgets/email_list_view.dart",
"repo_id": "codelabs",
"token_count": 715
} | 3 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:ui';
import 'package:flutter/material.dart';
import '../animations.dart';
class AnimatedFloatingActionButton extends StatefulWidget {
const AnimatedFloatingActionButton({
super.key,
required this.animation,
this.elevation,
this.onPressed,
this.child,
});
final Animation<double> animation;
final VoidCallback? onPressed;
final Widget? child;
final double? elevation;
@override
State<AnimatedFloatingActionButton> createState() =>
_AnimatedFloatingActionButton();
}
class _AnimatedFloatingActionButton
extends State<AnimatedFloatingActionButton> {
late final ColorScheme _colorScheme = Theme.of(context).colorScheme;
late final Animation<double> _scaleAnimation =
ScaleAnimation(parent: widget.animation);
late final Animation<double> _shapeAnimation =
ShapeAnimation(parent: widget.animation);
@override
Widget build(BuildContext context) {
return ScaleTransition(
scale: _scaleAnimation,
child: FloatingActionButton(
elevation: widget.elevation,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(
Radius.circular(lerpDouble(30, 15, _shapeAnimation.value)!),
),
),
backgroundColor: _colorScheme.tertiaryContainer,
foregroundColor: _colorScheme.onTertiaryContainer,
onPressed: widget.onPressed,
child: widget.child,
),
);
}
}
| codelabs/animated-responsive-layout/step_07/lib/widgets/animated_floating_action_button.dart/0 | {
"file_path": "codelabs/animated-responsive-layout/step_07/lib/widgets/animated_floating_action_button.dart",
"repo_id": "codelabs",
"token_count": 563
} | 4 |
include: ../../analysis_options.yaml
| codelabs/boring_to_beautiful/final/analysis_options.yaml/0 | {
"file_path": "codelabs/boring_to_beautiful/final/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 5 |
include: ../../analysis_options.yaml
| codelabs/boring_to_beautiful/step_02/analysis_options.yaml/0 | {
"file_path": "codelabs/boring_to_beautiful/step_02/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 6 |
include: ../../analysis_options.yaml
| codelabs/boring_to_beautiful/step_04/analysis_options.yaml/0 | {
"file_path": "codelabs/boring_to_beautiful/step_04/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 7 |
include: ../../analysis_options.yaml
| codelabs/boring_to_beautiful/step_06/analysis_options.yaml/0 | {
"file_path": "codelabs/boring_to_beautiful/step_06/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 8 |
import 'dart:async';
import 'package:flame/components.dart';
import 'package:flutter/material.dart';
import '../brick_breaker.dart';
class PlayArea extends RectangleComponent with HasGameReference<BrickBreaker> {
PlayArea()
: super(
paint: Paint()..color = const Color(0xfff2e8cf),
);
@override
FutureOr<void> onLoad() async {
super.onLoad();
size = Vector2(game.width, game.height);
}
}
| codelabs/brick_breaker/step_04/lib/src/components/play_area.dart/0 | {
"file_path": "codelabs/brick_breaker/step_04/lib/src/components/play_area.dart",
"repo_id": "codelabs",
"token_count": 168
} | 9 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/brick_breaker/step_04/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/brick_breaker/step_04/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 10 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/dart-patterns-and-records/step_04/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_04/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 11 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/dart-patterns-and-records/step_06_b/android/gradle.properties/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_06_b/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 12 |
#include "Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_08/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_08/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 13 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/dart-patterns-and-records/step_08/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_08/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 14 |
#import "GeneratedPluginRegistrant.h"
| codelabs/dart-patterns-and-records/step_09/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_09/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 15 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/dart-patterns-and-records/step_10/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_10/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 16 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/dart-patterns-and-records/step_12/android/gradle.properties/0 | {
"file_path": "codelabs/dart-patterns-and-records/step_12/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 17 |
import 'package:flutter_test/flutter_test.dart';
void main() {
test('empty test to pass ci', () {});
}
| codelabs/deeplink_cookbook/test/widget_test.dart/0 | {
"file_path": "codelabs/deeplink_cookbook/test/widget_test.dart",
"repo_id": "codelabs",
"token_count": 40
} | 18 |
rootProject.name = 'ffigen_app'
| codelabs/ffigen_codelab/step_03/android/settings.gradle/0 | {
"file_path": "codelabs/ffigen_codelab/step_03/android/settings.gradle",
"repo_id": "codelabs",
"token_count": 12
} | 19 |
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:ffigen_app/ffigen_app.dart' as ffigen_app;
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late int sumResult;
late Future<int> sumAsyncResult;
@override
void initState() {
super.initState();
sumResult = ffigen_app.sum(1, 2);
sumAsyncResult = ffigen_app.sumAsync(3, 4);
}
@override
Widget build(BuildContext context) {
const textStyle = TextStyle(fontSize: 25);
const spacerSmall = SizedBox(height: 10);
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Native Packages'),
),
body: SingleChildScrollView(
child: Container(
padding: const EdgeInsets.all(10),
child: Column(
children: [
const Text(
'This calls a native function through FFI that is shipped as source in the package. '
'The native code is built as part of the Flutter Runner build.',
style: textStyle,
textAlign: TextAlign.center,
),
spacerSmall,
Text(
'sum(1, 2) = $sumResult',
style: textStyle,
textAlign: TextAlign.center,
),
spacerSmall,
FutureBuilder<int>(
future: sumAsyncResult,
builder: (BuildContext context, AsyncSnapshot<int> value) {
final displayValue =
(value.hasData) ? value.data : 'loading';
return Text(
'await sumAsync(3, 4) = $displayValue',
style: textStyle,
textAlign: TextAlign.center,
);
},
),
],
),
),
),
),
);
}
}
| codelabs/ffigen_codelab/step_03/example/lib/main.dart/0 | {
"file_path": "codelabs/ffigen_codelab/step_03/example/lib/main.dart",
"repo_id": "codelabs",
"token_count": 1097
} | 20 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/ffigen_codelab/step_03/example/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/ffigen_codelab/step_03/example/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 21 |
import 'package:flutter/material.dart';
import 'home.dart';
class AuthGate extends StatelessWidget {
const AuthGate({super.key});
@override
Widget build(BuildContext context) {
return const HomeScreen();
}
}
| codelabs/firebase-auth-flutterfire-ui/start/lib/auth_gate.dart/0 | {
"file_path": "codelabs/firebase-auth-flutterfire-ui/start/lib/auth_gate.dart",
"repo_id": "codelabs",
"token_count": 72
} | 22 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-emulator-suite/complete/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/firebase-emulator-suite/complete/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 23 |
#include "Generated.xcconfig"
| codelabs/firebase-emulator-suite/start/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/firebase-emulator-suite/start/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 24 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/firebase-emulator-suite/start/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/firebase-emulator-suite/start/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 25 |
name: Get to know Firebase with Flutter
steps:
- name: step_02
steps:
- name: Remove generated code
rmdir: step_02
- name: Create project
flutter: create gtk_flutter --platforms=ios,android,web,macos
- name: Strip DEVELOPMENT_TEAM
strip-lines-containing: DEVELOPMENT_TEAM =
path: gtk_flutter/ios/Runner.xcodeproj/project.pbxproj
- name: update dependencies
path: gtk_flutter
flutter: pub upgrade --major-versions
- name: Configure analysis_options.yaml
path: gtk_flutter/analysis_options.yaml
replace-contents: |
include: ../../analysis_options.yaml
- name: Add dependencies
path: gtk_flutter
flutter: pub add google_fonts go_router
- name: Patch pubspec.yaml
path: gtk_flutter/pubspec.yaml
patch-u: |
--- b/firebase-get-to-know-flutter/step_02/pubspec.yaml
+++ a/firebase-get-to-know-flutter/step_02/pubspec.yaml
@@ -1,5 +1,6 @@
name: gtk_flutter
-description: "A new Flutter project."
+description: "Get to know Firebase with Flutter"
+
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
@@ -59,6 +60,8 @@ flutter:
# included with your application, so that you can use the icons in
# the material Icons class.
uses-material-design: true
+ assets:
+ - assets/codelab.png
# To add assets to your application, add an assets section, like this:
# assets:
- name: Patch android/app/build.gradle
path: gtk_flutter/android/app/build.gradle
patch-u: |
--- b/firebase-get-to-know-flutter/step_02/android/app/build.gradle
+++ a/firebase-get-to-know-flutter/step_02/android/app/build.gradle
@@ -45,7 +45,7 @@ android {
applicationId "com.example.gtk_flutter"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
- minSdkVersion flutter.minSdkVersion
+ minSdkVersion 21
targetSdkVersion flutter.targetSdkVersion
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
- name: Remove the README.md
rm: gtk_flutter/README.md
- name: VSCode config
path: gtk_flutter
mkdir: .vscode
- name: Add launch.json
path: gtk_flutter/.vscode/launch.json
replace-contents: |
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "gtk_flutter",
"request": "launch",
"type": "dart"
}
]
}
- name: Replace lib/main.dart
path: gtk_flutter/lib/main.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
import 'home_page.dart';
void main() {
runApp(const App());
}
class App extends StatelessWidget {
const App({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Firebase Meetup',
theme: ThemeData(
buttonTheme: Theme.of(context).buttonTheme.copyWith(
highlightColor: Colors.deepPurple,
),
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
textTheme: GoogleFonts.robotoTextTheme(
Theme.of(context).textTheme,
),
visualDensity: VisualDensity.adaptivePlatformDensity,
useMaterial3: true,
),
home: const HomePage(),
);
}
}
- name: Add lib/home_page.dart
path: gtk_flutter/lib/home_page.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'src/widgets.dart';
class HomePage extends StatelessWidget {
const HomePage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Firebase Meetup'),
),
body: ListView(
children: <Widget>[
Image.asset('assets/codelab.png'),
const SizedBox(height: 8),
const IconAndDetail(Icons.calendar_today, 'October 30'),
const IconAndDetail(Icons.location_city, 'San Francisco'),
const Divider(
height: 8,
thickness: 1,
indent: 8,
endIndent: 8,
color: Colors.grey,
),
const Header("What we'll be doing"),
const Paragraph(
'Join us for a day full of Firebase Workshops and Pizza!',
),
],
),
);
}
}
- name: Make lib/src
path: gtk_flutter/lib
mkdir: src
- name: Add lib/src/authentication.dart
path: gtk_flutter/lib/src/authentication.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
import 'widgets.dart';
class AuthFunc extends StatelessWidget {
const AuthFunc({
super.key,
required this.loggedIn,
required this.signOut,
});
final bool loggedIn;
final void Function() signOut;
@override
Widget build(BuildContext context) {
return Row(
children: [
Padding(
padding: const EdgeInsets.only(left: 24, bottom: 8),
child: StyledButton(
onPressed: () {
!loggedIn ? context.push('/sign-in') : signOut();
},
child: !loggedIn ? const Text('RSVP') : const Text('Logout')),
),
Visibility(
visible: loggedIn,
child: Padding(
padding: const EdgeInsets.only(left: 24, bottom: 8),
child: StyledButton(
onPressed: () {
context.push('/profile');
},
child: const Text('Profile')),
),
)
],
);
}
}
- name: Add lib/src/widgets.dart
path: gtk_flutter/lib/src/widgets.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
class Header extends StatelessWidget {
const Header(this.heading, {super.key});
final String heading;
@override
Widget build(BuildContext context) => Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
heading,
style: const TextStyle(fontSize: 24),
),
);
}
class Paragraph extends StatelessWidget {
const Paragraph(this.content, {super.key});
final String content;
@override
Widget build(BuildContext context) => Padding(
padding: const EdgeInsets.symmetric(horizontal: 8, vertical: 4),
child: Text(
content,
style: const TextStyle(fontSize: 18),
),
);
}
class IconAndDetail extends StatelessWidget {
const IconAndDetail(this.icon, this.detail, {super.key});
final IconData icon;
final String detail;
@override
Widget build(BuildContext context) => Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: [
Icon(icon),
const SizedBox(width: 8),
Text(
detail,
style: const TextStyle(fontSize: 18),
)
],
),
);
}
class StyledButton extends StatelessWidget {
const StyledButton({required this.child, required this.onPressed, super.key});
final Widget child;
final void Function() onPressed;
@override
Widget build(BuildContext context) => OutlinedButton(
style: OutlinedButton.styleFrom(
side: const BorderSide(color: Colors.deepPurple)),
onPressed: onPressed,
child: child,
);
}
- name: Replace test/widget_test.dart
path: gtk_flutter/test/widget_test.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_test/flutter_test.dart';
import 'package:gtk_flutter/main.dart';
void main() {
testWidgets('Basic rendering', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const App());
// Verify that our counter starts at 0.
expect(find.text('Firebase Meetup'), findsOneWidget);
expect(find.text('January 1st'), findsNothing);
});
}
- name: Make assets directory
path: gtk_flutter
mkdir: assets
- name: Add codelab.png
path: gtk_flutter/assets/codelab.png
base64-contents: |
iVBORw0KGgoAAAANSUhEUgAAAwcAAAHCCAIAAAA1gCI2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFn
ZVJlYWR5ccllPAABPeRJREFUeNrsnQd8FOeZuHen7WzVrrqEhApIAkTvYBtT7LhgXBJ3n+NycXKx0/6x
c0kuTr3YyTn2XXI2dhInLvG5x9gGA240F8BgBEJIIASSkEC9rLRtZqfs/5sZsayk7UXald7nNyyj2dnZ
2anPvN/7fZ+6f8cxFQAAAAAAwKQHg00AAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAA
AABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYE
AAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAA
AABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYE
AAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAA
AABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYE
AAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAA
AABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYE
AAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAAAABWBAAAAAAAAFYEAAAAAAAAVgQAAAAA
AACAFQEAAAAAAIAVAQAAAAAAgBUBQGrT0Nry46f/tHXvZ7ApAAAA4gUBmwAAUg4kQ7994Vk0Ync516+8
GDYIAABAXIBYEQCkGFUnTyhKhCgrmAobBAAAAKwIACYpv33+We94e28PbBAAAACwIgCYjGzd+5mvCX1y
pApSiwAAAMCKAGAy8smRQyOm/PaFZ/++5R3YMgAAALED2dYAkErYXc7RE/+25e09Rw794JY7FpbPgE0E
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
niBb2uK55D3+/WgieynXg1UAYEUAAAAA2IkkqXviyG3wljEGDQAAAAAAVgQAAAAAACsCAAAAAIAVAQAA
AADAigAAAAAAYEUAAAAAALAiAAAAAABYEQAAAAAArAgAAAAAAFYEAAAAAAArAgAAAACAFQEAAAAAwIoA
AAAAAGBFAAAAAACwIgAAAAAAWBEAAAAAAKwIAAAAAABWBAAAAAAAKwIAAAAAgBUBAAAAAMCKAAAAAABg
RQAAAAAAsCIAAAAAAFgRAAAAAACsCAAAAAAAVgQAAAAAACsCAAAAAIAVAQAAAADAigAAAAAAYEUAAAAA
ALAiAAAAAABYEQAAAAAArAgAAAAAAFYEAAAAAAArAgAAAACAFQEAAAAAwIoAAAAAAGBFAAAAAACwIgAA
AAAAWBEAAAAAAKwIAAAAAABWBAAAAAAAKwIAAAAAgBUBAAAAAMCKAAAAAABgRQAAAAAAsCIAAAAAAFgR
AAAAAACsCAAAAAAAVgQAAAAAACsCAAAAAIAVAQAAAADAigAAAAAAYEUAAAAAALAiAAAAAABYEQAAAAAA
rAgAAAAAAFYEAAAAAAArAgAAAACAFQEAAAAA3G78fwEGAOYQ2S/g6/WJAAAAAElFTkSuQmCC
- name: Build for iOS
platforms: [ macos ]
path: gtk_flutter
flutter: build ios --debug --simulator
- name: Build for Android
platforms: [ macos ]
path: gtk_flutter
flutter: build apk
- name: Build for macOS
platforms: [ macos ]
path: gtk_flutter
flutter: build macos --debug
- name: Copy step_02
copydir:
from: gtk_flutter
to: step_02
- name: step_04
steps:
- name: Remove generated code
rmdir: step_04
- name: Update iOS podspec
platforms: [ macos ]
path: gtk_flutter/ios
pod: update
- name: Update macOS podspec
platforms: [ macos ]
path: gtk_flutter/macos
pod: update
- name: Add lib/firebase_options.dart
path: gtk_flutter/lib/firebase_options.dart
replace-contents: |
// TODO: Replace with file generated by FlutterFire CLI.
// ignore_for_file: lines_longer_than_80_chars
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
import 'package:flutter/foundation.dart'
show defaultTargetPlatform, kIsWeb, TargetPlatform;
/// Default [FirebaseOptions] for use with your Firebase apps.
///
/// Example:
/// ```dart
/// import 'firebase_options.dart';
/// // ...
/// await Firebase.initializeApp(
/// options: DefaultFirebaseOptions.currentPlatform,
/// );
/// ```
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform {
if (kIsWeb) {
return web;
}
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return android;
case TargetPlatform.iOS:
return ios;
case TargetPlatform.macOS:
return macos;
default:
throw UnsupportedError(
'DefaultFirebaseOptions are not supported for this platform.');
}
}
static const FirebaseOptions web = FirebaseOptions(
apiKey: '',
appId: '',
messagingSenderId: '',
projectId: '',
);
static const FirebaseOptions android = FirebaseOptions(
apiKey: '',
appId: '',
messagingSenderId: '',
projectId: '',
);
static const FirebaseOptions ios = FirebaseOptions(
apiKey: '',
appId: '',
messagingSenderId: '',
projectId: '',
);
static const FirebaseOptions macos = FirebaseOptions(
apiKey: '',
appId: '',
messagingSenderId: '',
projectId: '',
);
}
- name: Patch macos/Runner/DebugProfile.entitlements
path: gtk_flutter/macos/Runner/DebugProfile.entitlements
patch-u: |
--- b/firebase-get-to-know-flutter/step_04/macos/Runner/DebugProfile.entitlements
+++ a/firebase-get-to-know-flutter/step_04/macos/Runner/DebugProfile.entitlements
@@ -8,5 +8,7 @@
<true/>
<key>com.apple.security.network.server</key>
<true/>
+ <key>com.apple.security.network.client</key>
+ <true/>
</dict>
</plist>
- name: Patch macos/Runner/Release.entitlements
path: gtk_flutter/macos/Runner/Release.entitlements
patch-u: |
diff --git b/firebase-get-to-know-flutter/step_04/macos/Runner/Release.entitlements a/firebase-get-to-know-flutter/step_04/macos/Runner/Release.entitlements
index 852fa1a..ee95ab7 100644
--- b/firebase-get-to-know-flutter/step_04/macos/Runner/Release.entitlements
+++ a/firebase-get-to-know-flutter/step_04/macos/Runner/Release.entitlements
@@ -4,5 +4,7 @@
<dict>
<key>com.apple.security.app-sandbox</key>
<true/>
+ <key>com.apple.security.network.client</key>
+ <true/>
</dict>
</plist>
- name: Add cloud_firestore firebase_auth firebase_core provider firebase_ui_auth
path: gtk_flutter
flutter: pub add cloud_firestore firebase_auth firebase_core provider firebase_ui_auth
- name: Copy step_04
copydir:
from: gtk_flutter
to: step_04
- name: step_05
steps:
- name: Remove generated code
rmdir: step_05
- name: Patch lib/main.dart
path: gtk_flutter/lib/main.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_05/lib/main.dart
+++ a/firebase-get-to-know-flutter/step_05/lib/main.dart
@@ -2,21 +2,105 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+import 'package:firebase_ui_auth/firebase_ui_auth.dart';
import 'package:flutter/material.dart';
+import 'package:go_router/go_router.dart';
import 'package:google_fonts/google_fonts.dart';
+import 'package:provider/provider.dart';
+import 'app_state.dart';
import 'home_page.dart';
void main() {
- runApp(const App());
+ WidgetsFlutterBinding.ensureInitialized();
+
+ runApp(ChangeNotifierProvider(
+ create: (context) => ApplicationState(),
+ builder: ((context, child) => const App()),
+ ));
}
+final _router = GoRouter(
+ routes: [
+ GoRoute(
+ path: '/',
+ builder: (context, state) => const HomePage(),
+ routes: [
+ GoRoute(
+ path: 'sign-in',
+ builder: (context, state) {
+ return SignInScreen(
+ actions: [
+ ForgotPasswordAction(((context, email) {
+ final uri = Uri(
+ path: '/sign-in/forgot-password',
+ queryParameters: <String, String?>{
+ 'email': email,
+ },
+ );
+ context.push(uri.toString());
+ })),
+ AuthStateChangeAction(((context, state) {
+ final user = switch (state) {
+ SignedIn state => state.user,
+ UserCreated state => state.credential.user,
+ _ => null
+ };
+ if (user == null) {
+ return;
+ }
+ if (state is UserCreated) {
+ user.updateDisplayName(user.email!.split('@')[0]);
+ }
+ if (!user.emailVerified) {
+ user.sendEmailVerification();
+ const snackBar = SnackBar(
+ content: Text(
+ 'Please check your email to verify your email address'));
+ ScaffoldMessenger.of(context).showSnackBar(snackBar);
+ }
+ context.pushReplacement('/');
+ })),
+ ],
+ );
+ },
+ routes: [
+ GoRoute(
+ path: 'forgot-password',
+ builder: (context, state) {
+ final arguments = state.uri.queryParameters;
+ return ForgotPasswordScreen(
+ email: arguments['email'],
+ headerMaxExtent: 200,
+ );
+ },
+ ),
+ ],
+ ),
+ GoRoute(
+ path: 'profile',
+ builder: (context, state) {
+ return ProfileScreen(
+ providers: const [],
+ actions: [
+ SignedOutAction((context) {
+ context.pushReplacement('/');
+ }),
+ ],
+ );
+ },
+ ),
+ ],
+ ),
+ ],
+);
+
class App extends StatelessWidget {
const App({super.key});
@override
Widget build(BuildContext context) {
- return MaterialApp(
+ return MaterialApp.router(
title: 'Firebase Meetup',
theme: ThemeData(
buttonTheme: Theme.of(context).buttonTheme.copyWith(
@@ -29,7 +113,7 @@ class App extends StatelessWidget {
visualDensity: VisualDensity.adaptivePlatformDensity,
useMaterial3: true,
),
- home: const HomePage(),
+ routerConfig: _router,
);
}
}
- name: Patch test/widget_test.dart
path: gtk_flutter/test/widget_test.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_05/test/widget_test.dart
+++ a/firebase-get-to-know-flutter/step_05/test/widget_test.dart
@@ -3,12 +3,19 @@
// found in the LICENSE file.
import 'package:flutter_test/flutter_test.dart';
+import 'package:gtk_flutter/app_state.dart';
import 'package:gtk_flutter/main.dart';
+import 'package:provider/provider.dart';
void main() {
testWidgets('Basic rendering', (tester) async {
// Build our app and trigger a frame.
- await tester.pumpWidget(const App());
+ await tester.pumpWidget(
+ ChangeNotifierProvider(
+ create: (context) => ApplicationState(),
+ builder: (context, _) => const App(),
+ ),
+ );
// Verify that our counter starts at 0.
expect(find.text('Firebase Meetup'), findsOneWidget);
- name: Add lib/app_state.dart
path: gtk_flutter/lib/app_state.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:firebase_auth/firebase_auth.dart'
hide EmailAuthProvider, PhoneAuthProvider;
import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_ui_auth/firebase_ui_auth.dart';
import 'package:flutter/material.dart';
import 'firebase_options.dart';
class ApplicationState extends ChangeNotifier {
ApplicationState() {
init();
}
bool _loggedIn = false;
bool get loggedIn => _loggedIn;
Future<void> init() async {
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform);
FirebaseUIAuth.configureProviders([
EmailAuthProvider(),
]);
FirebaseAuth.instance.userChanges().listen((user) {
if (user != null) {
_loggedIn = true;
} else {
_loggedIn = false;
}
notifyListeners();
});
}
}
- name: Patch lib/home_page.dart
path: gtk_flutter/lib/home_page.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_05/lib/home_page.dart
+++ a/firebase-get-to-know-flutter/step_05/lib/home_page.dart
@@ -2,8 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+import 'package:firebase_auth/firebase_auth.dart'
+ hide EmailAuthProvider, PhoneAuthProvider;
import 'package:flutter/material.dart';
+import 'package:provider/provider.dart';
+import 'app_state.dart';
+import 'src/authentication.dart';
import 'src/widgets.dart';
class HomePage extends StatelessWidget {
@@ -21,6 +26,13 @@ class HomePage extends StatelessWidget {
const SizedBox(height: 8),
const IconAndDetail(Icons.calendar_today, 'October 30'),
const IconAndDetail(Icons.location_city, 'San Francisco'),
+ Consumer<ApplicationState>(
+ builder: (context, appState, _) => AuthFunc(
+ loggedIn: appState.loggedIn,
+ signOut: () {
+ FirebaseAuth.instance.signOut();
+ }),
+ ),
const Divider(
height: 8,
thickness: 1,
- name: Patch lib/src/authentication.dart
path: gtk_flutter/lib/src/authentication.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_05/lib/src/authentication.dart
+++ a/firebase-get-to-know-flutter/step_05/lib/src/authentication.dart
@@ -30,16 +30,15 @@ class AuthFunc extends StatelessWidget {
child: !loggedIn ? const Text('RSVP') : const Text('Logout')),
),
Visibility(
- visible: loggedIn,
- child: Padding(
- padding: const EdgeInsets.only(left: 24, bottom: 8),
- child: StyledButton(
- onPressed: () {
- context.push('/profile');
- },
- child: const Text('Profile')),
- ),
- )
+ visible: loggedIn,
+ child: Padding(
+ padding: const EdgeInsets.only(left: 24, bottom: 8),
+ child: StyledButton(
+ onPressed: () {
+ context.push('/profile');
+ },
+ child: const Text('Profile')),
+ ))
],
);
}
- name: Copy step_05
copydir:
from: gtk_flutter
to: step_05
- name: step_06
steps:
- name: Remove generated code
rmdir: step_06
- name: Patch lib/app_state.dart
path: gtk_flutter/lib/app_state.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_06/lib/app_state.dart
+++ a/firebase-get-to-know-flutter/step_06/lib/app_state.dart
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart'
hide EmailAuthProvider, PhoneAuthProvider;
import 'package:firebase_core/firebase_core.dart';
@@ -16,6 +17,7 @@ class ApplicationState extends ChangeNotifier {
}
bool _loggedIn = false;
+
bool get loggedIn => _loggedIn;
Future<void> init() async {
@@ -35,4 +37,19 @@ class ApplicationState extends ChangeNotifier {
notifyListeners();
});
}
+
+ Future<DocumentReference> addMessageToGuestBook(String message) {
+ if (!_loggedIn) {
+ throw Exception('Must be logged in');
+ }
+
+ return FirebaseFirestore.instance
+ .collection('guestbook')
+ .add(<String, dynamic>{
+ 'text': message,
+ 'timestamp': DateTime.now().millisecondsSinceEpoch,
+ 'name': FirebaseAuth.instance.currentUser!.displayName,
+ 'userId': FirebaseAuth.instance.currentUser!.uid,
+ });
+ }
}
- name: Add lib/guest_book.dart
path: gtk_flutter/lib/guest_book.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:flutter/material.dart';
import 'src/widgets.dart';
class GuestBook extends StatefulWidget {
const GuestBook({required this.addMessage, super.key});
final FutureOr<void> Function(String message) addMessage;
@override
State<GuestBook> createState() => _GuestBookState();
}
class _GuestBookState extends State<GuestBook> {
final _formKey = GlobalKey<FormState>(debugLabel: '_GuestBookState');
final _controller = TextEditingController();
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: Form(
key: _formKey,
child: Row(
children: [
Expanded(
child: TextFormField(
controller: _controller,
decoration: const InputDecoration(
hintText: 'Leave a message',
),
validator: (value) {
if (value == null || value.isEmpty) {
return 'Enter your message to continue';
}
return null;
},
),
),
const SizedBox(width: 8),
StyledButton(
onPressed: () async {
if (_formKey.currentState!.validate()) {
await widget.addMessage(_controller.text);
_controller.clear();
}
},
child: const Row(
children: [
Icon(Icons.send),
SizedBox(width: 4),
Text('SEND'),
],
),
),
],
),
),
);
}
}
- name: Patch lib/home_page.dart
path: gtk_flutter/lib/home_page.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_06/lib/home_page.dart
+++ a/firebase-get-to-know-flutter/step_06/lib/home_page.dart
@@ -8,6 +8,7 @@ import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'app_state.dart';
+import 'guest_book.dart';
import 'src/authentication.dart';
import 'src/widgets.dart';
@@ -44,6 +45,20 @@ class HomePage extends StatelessWidget {
const Paragraph(
'Join us for a day full of Firebase Workshops and Pizza!',
),
+ Consumer<ApplicationState>(
+ builder: (context, appState, _) => Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ if (appState.loggedIn) ...[
+ const Header('Discussion'),
+ GuestBook(
+ addMessage: (message) =>
+ appState.addMessageToGuestBook(message),
+ ),
+ ],
+ ],
+ ),
+ ),
],
),
);
- name: Copy step_06
copydir:
from: gtk_flutter
to: step_06
- name: step_07
steps:
- name: Remove generated code
rmdir: step_07
- name: Patch lib/app_state.dart
path: gtk_flutter/lib/app_state.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_07/lib/app_state.dart
+++ a/firebase-get-to-know-flutter/step_07/lib/app_state.dart
@@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+import 'dart:async';
+
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart'
hide EmailAuthProvider, PhoneAuthProvider;
@@ -10,6 +12,7 @@ import 'package:firebase_ui_auth/firebase_ui_auth.dart';
import 'package:flutter/material.dart';
import 'firebase_options.dart';
+import 'guest_book_message.dart';
class ApplicationState extends ChangeNotifier {
ApplicationState() {
@@ -17,9 +20,12 @@ class ApplicationState extends ChangeNotifier {
}
bool _loggedIn = false;
-
bool get loggedIn => _loggedIn;
+ StreamSubscription<QuerySnapshot>? _guestBookSubscription;
+ List<GuestBookMessage> _guestBookMessages = [];
+ List<GuestBookMessage> get guestBookMessages => _guestBookMessages;
+
Future<void> init() async {
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform);
@@ -31,8 +37,26 @@ class ApplicationState extends ChangeNotifier {
FirebaseAuth.instance.userChanges().listen((user) {
if (user != null) {
_loggedIn = true;
+ _guestBookSubscription = FirebaseFirestore.instance
+ .collection('guestbook')
+ .orderBy('timestamp', descending: true)
+ .snapshots()
+ .listen((snapshot) {
+ _guestBookMessages = [];
+ for (final document in snapshot.docs) {
+ _guestBookMessages.add(
+ GuestBookMessage(
+ name: document.data()['name'] as String,
+ message: document.data()['text'] as String,
+ ),
+ );
+ }
+ notifyListeners();
+ });
} else {
_loggedIn = false;
+ _guestBookMessages = [];
+ _guestBookSubscription?.cancel();
}
notifyListeners();
});
- name: Create lib/guest_book_message.dart
path: gtk_flutter/lib/guest_book_message.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
class GuestBookMessage {
GuestBookMessage({required this.name, required this.message});
final String name;
final String message;
}
- name: Patch lib/guest_book.dart
path: gtk_flutter/lib/guest_book.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_07/lib/guest_book.dart
+++ a/firebase-get-to-know-flutter/step_07/lib/guest_book.dart
@@ -6,12 +6,18 @@ import 'dart:async';
import 'package:flutter/material.dart';
+import 'guest_book_message.dart';
import 'src/widgets.dart';
class GuestBook extends StatefulWidget {
- const GuestBook({required this.addMessage, super.key});
+ const GuestBook({
+ super.key,
+ required this.addMessage,
+ required this.messages,
+ });
final FutureOr<void> Function(String message) addMessage;
+ final List<GuestBookMessage> messages;
@override
State<GuestBook> createState() => _GuestBookState();
@@ -23,45 +29,54 @@ class _GuestBookState extends State<GuestBook> {
@override
Widget build(BuildContext context) {
- return Padding(
- padding: const EdgeInsets.all(8.0),
- child: Form(
- key: _formKey,
- child: Row(
- children: [
- Expanded(
- child: TextFormField(
- controller: _controller,
- decoration: const InputDecoration(
- hintText: 'Leave a message',
+ return Column(
+ crossAxisAlignment: CrossAxisAlignment.start,
+ children: [
+ Padding(
+ padding: const EdgeInsets.all(8.0),
+ child: Form(
+ key: _formKey,
+ child: Row(
+ children: [
+ Expanded(
+ child: TextFormField(
+ controller: _controller,
+ decoration: const InputDecoration(
+ hintText: 'Leave a message',
+ ),
+ validator: (value) {
+ if (value == null || value.isEmpty) {
+ return 'Enter your message to continue';
+ }
+ return null;
+ },
+ ),
),
- validator: (value) {
- if (value == null || value.isEmpty) {
- return 'Enter your message to continue';
- }
- return null;
- },
- ),
- ),
- const SizedBox(width: 8),
- StyledButton(
- onPressed: () async {
- if (_formKey.currentState!.validate()) {
- await widget.addMessage(_controller.text);
- _controller.clear();
- }
- },
- child: const Row(
- children: [
- Icon(Icons.send),
- SizedBox(width: 4),
- Text('SEND'),
- ],
- ),
+ const SizedBox(width: 8),
+ StyledButton(
+ onPressed: () async {
+ if (_formKey.currentState!.validate()) {
+ await widget.addMessage(_controller.text);
+ _controller.clear();
+ }
+ },
+ child: const Row(
+ children: [
+ Icon(Icons.send),
+ SizedBox(width: 4),
+ Text('SEND'),
+ ],
+ ),
+ ),
+ ],
),
- ],
+ ),
),
- ),
+ const SizedBox(height: 8),
+ for (var message in widget.messages)
+ Paragraph('${message.name}: ${message.message}'),
+ const SizedBox(height: 8),
+ ],
);
}
}
- name: Patch lib/home_page.dart
path: gtk_flutter/lib/home_page.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_07/lib/home_page.dart
+++ a/firebase-get-to-know-flutter/step_07/lib/home_page.dart
@@ -54,6 +54,7 @@ class HomePage extends StatelessWidget {
GuestBook(
addMessage: (message) =>
appState.addMessageToGuestBook(message),
+ messages: appState.guestBookMessages,
),
],
],
- name: Copy step_07
copydir:
from: gtk_flutter
to: step_07
- name: step_09
steps:
- name: Remove generated code
rmdir: step_09
- name: Patch lib/src/authentication.dart
path: gtk_flutter/lib/src/authentication.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_09/lib/src/authentication.dart
+++ a/firebase-get-to-know-flutter/step_09/lib/src/authentication.dart
@@ -12,10 +12,12 @@ class AuthFunc extends StatelessWidget {
super.key,
required this.loggedIn,
required this.signOut,
+ this.enableFreeSwag = false,
});
final bool loggedIn;
final void Function() signOut;
+ final bool enableFreeSwag;
@override
Widget build(BuildContext context) {
@@ -38,7 +40,17 @@ class AuthFunc extends StatelessWidget {
context.push('/profile');
},
child: const Text('Profile')),
- ))
+ )),
+ Visibility(
+ visible: enableFreeSwag,
+ child: Padding(
+ padding: const EdgeInsets.only(left: 24, bottom: 8),
+ child: StyledButton(
+ onPressed: () {
+ throw Exception('free swag unimplemented');
+ },
+ child: const Text('Free swag!')),
+ )),
],
);
}
- name: Patch lib/app_state.dart
path: gtk_flutter/lib/app_state.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_09/lib/app_state.dart
+++ a/firebase-get-to-know-flutter/step_09/lib/app_state.dart
@@ -14,18 +14,69 @@ import 'package:flutter/material.dart';
import 'firebase_options.dart';
import 'guest_book_message.dart';
+enum Attending { yes, no, unknown }
+
class ApplicationState extends ChangeNotifier {
ApplicationState() {
init();
}
bool _loggedIn = false;
+
bool get loggedIn => _loggedIn;
+ bool _emailVerified = false;
+
+ bool get emailVerified => _emailVerified;
+
StreamSubscription<QuerySnapshot>? _guestBookSubscription;
List<GuestBookMessage> _guestBookMessages = [];
+
List<GuestBookMessage> get guestBookMessages => _guestBookMessages;
+ int _attendees = 0;
+
+ int get attendees => _attendees;
+
+ static Map<String, dynamic> defaultValues = <String, dynamic>{
+ 'event_date': 'October 18, 2022',
+ 'enable_free_swag': false,
+ 'call_to_action': 'Join us for a day full of Firebase Workshops and Pizza!',
+ };
+
+ // ignoring lints on these fields since we are modifying them in a different
+ // part of the codelab
+ // ignore: prefer_final_fields
+ bool _enableFreeSwag = defaultValues['enable_free_swag'] as bool;
+
+ bool get enableFreeSwag => _enableFreeSwag;
+
+ // ignore: prefer_final_fields
+ String _eventDate = defaultValues['event_date'] as String;
+
+ String get eventDate => _eventDate;
+
+ // ignore: prefer_final_fields
+ String _callToAction = defaultValues['call_to_action'] as String;
+
+ String get callToAction => _callToAction;
+
+ Attending _attending = Attending.unknown;
+ StreamSubscription<DocumentSnapshot>? _attendingSubscription;
+
+ Attending get attending => _attending;
+
+ set attending(Attending attending) {
+ final userDoc = FirebaseFirestore.instance
+ .collection('attendees')
+ .doc(FirebaseAuth.instance.currentUser!.uid);
+ if (attending == Attending.yes) {
+ userDoc.set(<String, dynamic>{'attending': true});
+ } else {
+ userDoc.set(<String, dynamic>{'attending': false});
+ }
+ }
+
Future<void> init() async {
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform);
@@ -34,9 +85,19 @@ class ApplicationState extends ChangeNotifier {
EmailAuthProvider(),
]);
+ FirebaseFirestore.instance
+ .collection('attendees')
+ .where('attending', isEqualTo: true)
+ .snapshots()
+ .listen((snapshot) {
+ _attendees = snapshot.docs.length;
+ notifyListeners();
+ });
+
FirebaseAuth.instance.userChanges().listen((user) {
if (user != null) {
_loggedIn = true;
+ _emailVerified = user.emailVerified;
_guestBookSubscription = FirebaseFirestore.instance
.collection('guestbook')
.orderBy('timestamp', descending: true)
@@ -53,15 +114,43 @@ class ApplicationState extends ChangeNotifier {
}
notifyListeners();
});
+ _attendingSubscription = FirebaseFirestore.instance
+ .collection('attendees')
+ .doc(user.uid)
+ .snapshots()
+ .listen((snapshot) {
+ if (snapshot.data() != null) {
+ if (snapshot.data()!['attending'] as bool) {
+ _attending = Attending.yes;
+ } else {
+ _attending = Attending.no;
+ }
+ } else {
+ _attending = Attending.unknown;
+ }
+ notifyListeners();
+ });
} else {
_loggedIn = false;
+ _emailVerified = false;
_guestBookMessages = [];
_guestBookSubscription?.cancel();
+ _attendingSubscription?.cancel();
}
notifyListeners();
});
}
+ Future<void> refreshLoggedInUser() async {
+ final currentUser = FirebaseAuth.instance.currentUser;
+
+ if (currentUser == null) {
+ return;
+ }
+
+ await currentUser.reload();
+ }
+
Future<DocumentReference> addMessageToGuestBook(String message) {
if (!_loggedIn) {
throw Exception('Must be logged in');
- name: Patch lib/home_page.dart
path: gtk_flutter/lib/home_page.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_09/lib/home_page.dart
+++ a/firebase-get-to-know-flutter/step_09/lib/home_page.dart
@@ -11,6 +11,7 @@ import 'app_state.dart';
import 'guest_book.dart';
import 'src/authentication.dart';
import 'src/widgets.dart';
+import 'yes_no_selection.dart';
class HomePage extends StatelessWidget {
const HomePage({super.key});
@@ -25,14 +26,19 @@ class HomePage extends StatelessWidget {
children: <Widget>[
Image.asset('assets/codelab.png'),
const SizedBox(height: 8),
- const IconAndDetail(Icons.calendar_today, 'October 30'),
+ Consumer<ApplicationState>(
+ builder: (context, appState, _) =>
+ IconAndDetail(Icons.calendar_today, appState.eventDate),
+ ),
const IconAndDetail(Icons.location_city, 'San Francisco'),
Consumer<ApplicationState>(
builder: (context, appState, _) => AuthFunc(
- loggedIn: appState.loggedIn,
- signOut: () {
- FirebaseAuth.instance.signOut();
- }),
+ loggedIn: appState.loggedIn,
+ signOut: () {
+ FirebaseAuth.instance.signOut();
+ },
+ enableFreeSwag: appState.enableFreeSwag,
+ ),
),
const Divider(
height: 8,
@@ -42,14 +48,25 @@ class HomePage extends StatelessWidget {
color: Colors.grey,
),
const Header("What we'll be doing"),
- const Paragraph(
- 'Join us for a day full of Firebase Workshops and Pizza!',
+ Consumer<ApplicationState>(
+ builder: (context, appState, _) => Paragraph(
+ appState.callToAction,
+ ),
),
Consumer<ApplicationState>(
builder: (context, appState, _) => Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
+ switch (appState.attendees) {
+ 1 => const Paragraph('1 person going'),
+ >= 2 => Paragraph('${appState.attendees} people going'),
+ _ => const Paragraph('No one going'),
+ },
if (appState.loggedIn) ...[
+ YesNoSelection(
+ state: appState.attending,
+ onSelection: (attending) => appState.attending = attending,
+ ),
const Header('Discussion'),
GuestBook(
addMessage: (message) =>
- name: Patch lib/main.dart
path: gtk_flutter/lib/main.dart
patch-u: |
--- b/firebase-get-to-know-flutter/step_09/lib/main.dart
+++ a/firebase-get-to-know-flutter/step_09/lib/main.dart
@@ -80,13 +80,28 @@ final _router = GoRouter(
GoRoute(
path: 'profile',
builder: (context, state) {
- return ProfileScreen(
- providers: const [],
- actions: [
- SignedOutAction((context) {
- context.pushReplacement('/');
- }),
- ],
+ return Consumer<ApplicationState>(
+ builder: (context, appState, _) => ProfileScreen(
+ key: ValueKey(appState.emailVerified),
+ providers: const [],
+ actions: [
+ SignedOutAction(
+ ((context) {
+ context.pushReplacement('/');
+ }),
+ ),
+ ],
+ children: [
+ Visibility(
+ visible: !appState.emailVerified,
+ child: OutlinedButton(
+ child: const Text('Recheck Verification State'),
+ onPressed: () {
+ appState.refreshLoggedInUser();
+ },
+ ))
+ ],
+ ),
);
},
),
- name: Add lib/yes_no_selection.dart
path: gtk_flutter/lib/yes_no_selection.dart
replace-contents: |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'app_state.dart';
import 'src/widgets.dart';
class YesNoSelection extends StatelessWidget {
const YesNoSelection({
super.key,
required this.state,
required this.onSelection,
});
final Attending state;
final void Function(Attending selection) onSelection;
@override
Widget build(BuildContext context) {
switch (state) {
case Attending.yes:
return Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: [
FilledButton(
onPressed: () => onSelection(Attending.yes),
child: const Text('YES'),
),
const SizedBox(width: 8),
TextButton(
onPressed: () => onSelection(Attending.no),
child: const Text('NO'),
),
],
),
);
case Attending.no:
return Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: [
TextButton(
onPressed: () => onSelection(Attending.yes),
child: const Text('YES'),
),
const SizedBox(width: 8),
FilledButton(
onPressed: () => onSelection(Attending.no),
child: const Text('NO'),
),
],
),
);
default:
return Padding(
padding: const EdgeInsets.all(8.0),
child: Row(
children: [
StyledButton(
onPressed: () => onSelection(Attending.yes),
child: const Text('YES'),
),
const SizedBox(width: 8),
StyledButton(
onPressed: () => onSelection(Attending.no),
child: const Text('NO'),
),
],
),
);
}
}
}
- name: Flutter clean
path: gtk_flutter
flutter: clean
- name: Build for iOS
platforms: [ macos ]
path: gtk_flutter
flutter: build ios --debug --simulator
- name: Build for Android
platforms: [ macos ]
path: gtk_flutter
flutter: build apk
- name: Build for macOS
platforms: [ macos ]
path: gtk_flutter
flutter: build macos --debug
- name: Copy step_09
copydir:
from: gtk_flutter
to: step_09
- name: Cleanup
rmdir: gtk_flutter
| codelabs/firebase-get-to-know-flutter/codelab_rebuild.yaml/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/codelab_rebuild.yaml",
"repo_id": "codelabs",
"token_count": 129559
} | 26 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:async';
import 'package:flutter/material.dart';
import 'src/widgets.dart';
class GuestBook extends StatefulWidget {
const GuestBook({required this.addMessage, super.key});
final FutureOr<void> Function(String message) addMessage;
@override
State<GuestBook> createState() => _GuestBookState();
}
class _GuestBookState extends State<GuestBook> {
final _formKey = GlobalKey<FormState>(debugLabel: '_GuestBookState');
final _controller = TextEditingController();
@override
Widget build(BuildContext context) {
return Padding(
padding: const EdgeInsets.all(8.0),
child: Form(
key: _formKey,
child: Row(
children: [
Expanded(
child: TextFormField(
controller: _controller,
decoration: const InputDecoration(
hintText: 'Leave a message',
),
validator: (value) {
if (value == null || value.isEmpty) {
return 'Enter your message to continue';
}
return null;
},
),
),
const SizedBox(width: 8),
StyledButton(
onPressed: () async {
if (_formKey.currentState!.validate()) {
await widget.addMessage(_controller.text);
_controller.clear();
}
},
child: const Row(
children: [
Icon(Icons.send),
SizedBox(width: 4),
Text('SEND'),
],
),
),
],
),
),
);
}
}
| codelabs/firebase-get-to-know-flutter/step_06/lib/guest_book.dart/0 | {
"file_path": "codelabs/firebase-get-to-know-flutter/step_06/lib/guest_book.dart",
"repo_id": "codelabs",
"token_count": 932
} | 27 |
#!/usr/bin/env bash
set -e -o pipefail
DIR="${BASH_SOURCE%/*}"
source "$DIR/flutter_ci_script_shared.sh"
declare -a CODELABS=(
"adaptive_app"
"animated-responsive-layout"
"boring_to_beautiful"
"brick_breaker"
"cookbook"
"dart-patterns-and-records"
"deeplink_cookbook"
"ffigen_codelab"
"firebase-auth-flutterfire-ui"
"firebase-emulator-suite"
"firebase-get-to-know-flutter"
"github-client"
"google-maps-in-flutter"
"haiku_generator"
"homescreen_codelab"
"in_app_purchases"
"namer"
"next-gen-ui"
"pesto_flutter"
"testing_codelab"
"tfagents-flutter"
"tfrs-flutter"
"tfserving-flutter"
"tooling"
"webview_flutter"
)
ci_codelabs "stable" "${CODELABS[@]}"
echo "== END OF TESTS"
| codelabs/flutter_ci_script_stable.sh/0 | {
"file_path": "codelabs/flutter_ci_script_stable.sh",
"repo_id": "codelabs",
"token_count": 338
} | 28 |
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
| codelabs/homescreen_codelab/step_04/android/gradle.properties/0 | {
"file_path": "codelabs/homescreen_codelab/step_04/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 31
} | 29 |
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>iap</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.267794903814-rejjtjrpe3ia81avvoqc3g2ieh7p3eji</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsLocalNetworking</key>
<true/>
</dict>
<key>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIViewControllerBasedStatusBarAppearance</key>
<false/>
</dict>
</plist>
| codelabs/in_app_purchases/complete/app/ios/Runner/Info-Release.plist/0 | {
"file_path": "codelabs/in_app_purchases/complete/app/ios/Runner/Info-Release.plist",
"repo_id": "codelabs",
"token_count": 782
} | 30 |
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import '../logic/firebase_notifier.dart';
class LoginPage extends StatelessWidget {
const LoginPage({super.key});
@override
Widget build(BuildContext context) {
var firebaseNotifier = context.watch<FirebaseNotifier>();
if (firebaseNotifier.isLoggingIn) {
return const Center(
child: Text('Logging in...'),
);
}
return Center(
child: FilledButton(
onPressed: () {
firebaseNotifier.login();
},
child: const Text('Login'),
));
}
}
| codelabs/in_app_purchases/complete/app/lib/pages/login_page.dart/0 | {
"file_path": "codelabs/in_app_purchases/complete/app/lib/pages/login_page.dart",
"repo_id": "codelabs",
"token_count": 234
} | 31 |
import 'package:googleapis/firestore/v1.dart';
import 'products.dart';
enum IAPSource {
googleplay,
appstore,
}
abstract class Purchase {
final IAPSource iapSource;
final String orderId;
final String productId;
final String? userId;
final DateTime purchaseDate;
final ProductType type;
const Purchase({
required this.iapSource,
required this.orderId,
required this.productId,
required this.userId,
required this.purchaseDate,
required this.type,
});
Map<String, Value> toDocument() {
return {
'iapSource': Value(stringValue: iapSource.name),
'orderId': Value(stringValue: orderId),
'productId': Value(stringValue: productId),
'userId': Value(stringValue: userId),
'purchaseDate':
Value(timestampValue: purchaseDate.toUtc().toIso8601String()),
'type': Value(stringValue: type.name),
};
}
Map<String, Value> updateDocument();
static Purchase fromDocument(Document e) {
final type = ProductType.values.firstWhere(
(element) => element.name == e.fields!['type']!.stringValue);
switch (type) {
case ProductType.subscription:
return SubscriptionPurchase(
iapSource: e.fields!['iapSource']!.stringValue == 'googleplay'
? IAPSource.googleplay
: IAPSource.appstore,
orderId: e.fields!['orderId']!.stringValue!,
productId: e.fields!['productId']!.stringValue!,
userId: e.fields!['userId']!.stringValue,
purchaseDate:
DateTime.parse(e.fields!['purchaseDate']!.timestampValue!),
status: SubscriptionStatus.values.firstWhere(
(element) => element.name == e.fields!['status']!.stringValue),
expiryDate: DateTime.tryParse(
e.fields!['expiryDate']?.timestampValue ?? '') ??
DateTime.now(),
);
case ProductType.nonSubscription:
return NonSubscriptionPurchase(
iapSource: e.fields!['iapSource']!.stringValue == 'googleplay'
? IAPSource.googleplay
: IAPSource.appstore,
orderId: e.fields!['orderId']!.stringValue!,
productId: e.fields!['productId']!.stringValue!,
userId: e.fields!['userId']!.stringValue,
purchaseDate:
DateTime.parse(e.fields!['purchaseDate']!.timestampValue!),
status: NonSubscriptionStatus.values.firstWhere(
(element) => element.name == e.fields!['status']!.stringValue),
);
}
}
}
enum NonSubscriptionStatus {
pending,
completed,
cancelled,
}
enum SubscriptionStatus { pending, active, expired }
class NonSubscriptionPurchase extends Purchase {
final NonSubscriptionStatus status;
NonSubscriptionPurchase({
required super.iapSource,
required super.orderId,
required super.productId,
required super.userId,
required super.purchaseDate,
required this.status,
super.type = ProductType.nonSubscription,
});
@override
Map<String, Value> toDocument() {
final doc = super.toDocument();
doc.addAll({
'status': Value(stringValue: status.name),
});
return doc;
}
@override
Map<String, Value> updateDocument() {
return {
'status': Value(stringValue: status.name),
};
}
@override
String toString() {
return 'NonSubscriptionPurchase { '
'iapSource: $iapSource, '
'orderId: $orderId, '
'productId: $productId, '
'userId: $userId, '
'purchaseDate: $purchaseDate, '
'status: $status, '
'type: $type '
'}';
}
}
class SubscriptionPurchase extends Purchase {
final SubscriptionStatus status;
final DateTime expiryDate;
SubscriptionPurchase({
required super.iapSource,
required super.orderId,
required super.productId,
required super.userId,
required super.purchaseDate,
required this.status,
required this.expiryDate,
super.type = ProductType.subscription,
});
@override
Map<String, Value> toDocument() {
final doc = super.toDocument();
doc.addAll({
'expiryDate': Value(timestampValue: expiryDate.toUtc().toIso8601String()),
'status': Value(stringValue: status.name),
});
return doc;
}
@override
Map<String, Value> updateDocument() {
return {
'status': Value(stringValue: status.name),
};
}
@override
String toString() {
return 'SubscriptionPurchase { '
'iapSource: $iapSource, '
'orderId: $orderId, '
'productId: $productId, '
'userId: $userId, '
'purchaseDate: $purchaseDate, '
'status: $status, '
'expiryDate: $expiryDate, '
'type: $type '
'}';
}
}
class IapRepository {
final FirestoreApi api;
final String projectId;
IapRepository(this.api, this.projectId);
Future<void> createOrUpdatePurchase(Purchase purchaseData) async {
print('Updating $purchaseData');
final purchaseId = _purchaseId(purchaseData);
await api.projects.databases.documents.commit(
CommitRequest(
writes: [
Write(
update: Document(
fields: purchaseData.toDocument(),
name:
'projects/$projectId/databases/(default)/documents/purchases/$purchaseId'),
),
],
),
'projects/$projectId/databases/(default)',
);
}
Future<void> updatePurchase(Purchase purchaseData) async {
print('Updating $purchaseData');
final purchaseId = _purchaseId(purchaseData);
await api.projects.databases.documents.commit(
CommitRequest(
writes: [
Write(
update: Document(
fields: purchaseData.updateDocument(),
name:
'projects/$projectId/databases/(default)/documents/purchases/$purchaseId'),
updateMask: DocumentMask(fieldPaths: ['status']),
),
],
),
'projects/$projectId/databases/(default)',
);
}
String _purchaseId(Purchase purchaseData) {
return '${purchaseData.iapSource.name}_${purchaseData.orderId}';
}
Future<List<Purchase>> getPurchases() async {
final list = await api.projects.databases.documents.list(
'projects/$projectId/databases/(default)/documents',
'purchases',
);
return list.documents!.map((e) => Purchase.fromDocument(e)).toList();
}
}
| codelabs/in_app_purchases/complete/dart-backend/lib/iap_repository.dart/0 | {
"file_path": "codelabs/in_app_purchases/complete/dart-backend/lib/iap_repository.dart",
"repo_id": "codelabs",
"token_count": 2640
} | 32 |
import 'dart:async';
import 'package:app_store_server_sdk/app_store_server_sdk.dart';
import 'constants.dart';
import 'iap_repository.dart';
import 'products.dart';
import 'purchase_handler.dart';
class AppStorePurchaseHandler extends PurchaseHandler {
final IapRepository iapRepository;
AppStorePurchaseHandler(
this.iapRepository,
);
final _iTunesAPI = ITunesApi(
ITunesHttpClient(
ITunesEnvironment.sandbox(),
loggingEnabled: true,
),
);
@override
Future<bool> handleNonSubscription({
required String userId,
required ProductData productData,
required String token,
}) {
return handleValidation(userId: userId, token: token);
}
@override
Future<bool> handleSubscription({
required String userId,
required ProductData productData,
required String token,
}) {
return handleValidation(userId: userId, token: token);
}
/// Handle purchase validation.
Future<bool> handleValidation({
required String userId,
required String token,
}) async {
print('AppStorePurchaseHandler.handleValidation');
final response = await _iTunesAPI.verifyReceipt(
password: appStoreSharedSecret,
receiptData: token,
);
print('response: $response');
if (response.status == 0) {
print('Successfully verified purchase');
final receipts = response.latestReceiptInfo ?? [];
for (final receipt in receipts) {
final product = productDataMap[receipt.productId];
if (product == null) {
print('Error: Unknown product: ${receipt.productId}');
continue;
}
switch (product.type) {
case ProductType.nonSubscription:
await iapRepository.createOrUpdatePurchase(NonSubscriptionPurchase(
userId: userId,
productId: receipt.productId ?? '',
iapSource: IAPSource.appstore,
orderId: receipt.originalTransactionId ?? '',
purchaseDate: DateTime.fromMillisecondsSinceEpoch(
int.parse(receipt.originalPurchaseDateMs ?? '0')),
type: product.type,
status: NonSubscriptionStatus.completed,
));
break;
case ProductType.subscription:
await iapRepository.createOrUpdatePurchase(SubscriptionPurchase(
userId: userId,
productId: receipt.productId ?? '',
iapSource: IAPSource.appstore,
orderId: receipt.originalTransactionId ?? '',
purchaseDate: DateTime.fromMillisecondsSinceEpoch(
int.parse(receipt.originalPurchaseDateMs ?? '0')),
type: product.type,
expiryDate: DateTime.fromMillisecondsSinceEpoch(
int.parse(receipt.expiresDateMs ?? '0')),
status: SubscriptionStatus.active,
));
break;
}
}
return true;
} else {
print('Error: Status: ${response.status}');
return false;
}
}
}
| codelabs/in_app_purchases/step_09/dart-backend/lib/app_store_purchase_handler.dart/0 | {
"file_path": "codelabs/in_app_purchases/step_09/dart-backend/lib/app_store_purchase_handler.dart",
"repo_id": "codelabs",
"token_count": 1263
} | 33 |
#include "Generated.xcconfig"
| codelabs/namer/step_04_a_widget/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_04_a_widget/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 34 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_04_a_widget/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_04_a_widget/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 35 |
#import "GeneratedPluginRegistrant.h"
| codelabs/namer/step_04_b_behavior/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/namer/step_04_b_behavior/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 36 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_04_b_behavior/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_04_b_behavior/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 37 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/namer/step_05_h_center_horizontal/android/gradle.properties/0 | {
"file_path": "codelabs/namer/step_05_h_center_horizontal/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 38 |
#include "Generated.xcconfig"
| codelabs/namer/step_06_a_business_logic/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_06_a_business_logic/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 39 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_06_a_business_logic/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_06_a_business_logic/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 40 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_06_b_add_row/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/namer/step_06_b_add_row/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 41 |
#include "Generated.xcconfig"
| codelabs/namer/step_07_c_add_selectedindex/ios/Flutter/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_c_add_selectedindex/ios/Flutter/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 42 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/namer/step_07_c_add_selectedindex/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_c_add_selectedindex/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 43 |
#import "GeneratedPluginRegistrant.h"
| codelabs/namer/step_07_d_use_selectedindex/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/namer/step_07_d_use_selectedindex/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 44 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/namer/step_07_d_use_selectedindex/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/namer/step_07_d_use_selectedindex/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 45 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_02_c/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_02_c/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 46 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/next-gen-ui/step_04_e/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/next-gen-ui/step_04_e/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 47 |
include: ../../analysis_options.yaml
| codelabs/testing_codelab/step_04/analysis_options.yaml/0 | {
"file_path": "codelabs/testing_codelab/step_04/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 48 |
#import "GeneratedPluginRegistrant.h"
| codelabs/testing_codelab/step_08/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/testing_codelab/step_08/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 49 |
#include "../../Flutter/Flutter-Release.xcconfig"
#include "Warnings.xcconfig"
| codelabs/tfagents-flutter/step3/frontend/macos/Runner/Configs/Release.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step3/frontend/macos/Runner/Configs/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 50 |
#include "Generated.xcconfig"
| codelabs/tfagents-flutter/step4/frontend/ios/Flutter/Release.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step4/frontend/ios/Flutter/Release.xcconfig",
"repo_id": "codelabs",
"token_count": 12
} | 51 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfagents-flutter/step4/frontend/macos/Flutter/Flutter-Release.xcconfig/0 | {
"file_path": "codelabs/tfagents-flutter/step4/frontend/macos/Flutter/Flutter-Release.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 52 |
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
| codelabs/tfagents-flutter/step6/frontend/android/gradle.properties/0 | {
"file_path": "codelabs/tfagents-flutter/step6/frontend/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 31
} | 53 |
#include "../../Flutter/Flutter-Debug.xcconfig"
#include "Warnings.xcconfig"
| codelabs/tfrs-flutter/finished/frontend/macos/Runner/Configs/Debug.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/finished/frontend/macos/Runner/Configs/Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 32
} | 54 |
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
| codelabs/tfrs-flutter/step0/frontend/android/gradle.properties/0 | {
"file_path": "codelabs/tfrs-flutter/step0/frontend/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 31
} | 55 |
#include "ephemeral/Flutter-Generated.xcconfig"
| codelabs/tfrs-flutter/step4/frontend/macos/Flutter/Flutter-Debug.xcconfig/0 | {
"file_path": "codelabs/tfrs-flutter/step4/frontend/macos/Flutter/Flutter-Debug.xcconfig",
"repo_id": "codelabs",
"token_count": 19
} | 56 |
///
// Generated code. Do not modify.
// source: tensorflow/core/example/feature.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields,deprecated_member_use_from_same_package
import 'dart:core' as $core;
import 'dart:convert' as $convert;
import 'dart:typed_data' as $typed_data;
@$core.Deprecated('Use bytesListDescriptor instead')
const BytesList$json = const {
'1': 'BytesList',
'2': const [
const {'1': 'value', '3': 1, '4': 3, '5': 12, '10': 'value'},
],
};
/// Descriptor for `BytesList`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List bytesListDescriptor =
$convert.base64Decode('CglCeXRlc0xpc3QSFAoFdmFsdWUYASADKAxSBXZhbHVl');
@$core.Deprecated('Use floatListDescriptor instead')
const FloatList$json = const {
'1': 'FloatList',
'2': const [
const {
'1': 'value',
'3': 1,
'4': 3,
'5': 2,
'8': const {'2': true},
'10': 'value',
},
],
};
/// Descriptor for `FloatList`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List floatListDescriptor = $convert
.base64Decode('CglGbG9hdExpc3QSGAoFdmFsdWUYASADKAJCAhABUgV2YWx1ZQ==');
@$core.Deprecated('Use int64ListDescriptor instead')
const Int64List$json = const {
'1': 'Int64List',
'2': const [
const {
'1': 'value',
'3': 1,
'4': 3,
'5': 3,
'8': const {'2': true},
'10': 'value',
},
],
};
/// Descriptor for `Int64List`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List int64ListDescriptor = $convert
.base64Decode('CglJbnQ2NExpc3QSGAoFdmFsdWUYASADKANCAhABUgV2YWx1ZQ==');
@$core.Deprecated('Use featureDescriptor instead')
const Feature$json = const {
'1': 'Feature',
'2': const [
const {
'1': 'bytes_list',
'3': 1,
'4': 1,
'5': 11,
'6': '.tensorflow.BytesList',
'9': 0,
'10': 'bytesList'
},
const {
'1': 'float_list',
'3': 2,
'4': 1,
'5': 11,
'6': '.tensorflow.FloatList',
'9': 0,
'10': 'floatList'
},
const {
'1': 'int64_list',
'3': 3,
'4': 1,
'5': 11,
'6': '.tensorflow.Int64List',
'9': 0,
'10': 'int64List'
},
],
'8': const [
const {'1': 'kind'},
],
};
/// Descriptor for `Feature`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List featureDescriptor = $convert.base64Decode(
'CgdGZWF0dXJlEjYKCmJ5dGVzX2xpc3QYASABKAsyFS50ZW5zb3JmbG93LkJ5dGVzTGlzdEgAUglieXRlc0xpc3QSNgoKZmxvYXRfbGlzdBgCIAEoCzIVLnRlbnNvcmZsb3cuRmxvYXRMaXN0SABSCWZsb2F0TGlzdBI2CgppbnQ2NF9saXN0GAMgASgLMhUudGVuc29yZmxvdy5JbnQ2NExpc3RIAFIJaW50NjRMaXN0QgYKBGtpbmQ=');
@$core.Deprecated('Use featuresDescriptor instead')
const Features$json = const {
'1': 'Features',
'2': const [
const {
'1': 'feature',
'3': 1,
'4': 3,
'5': 11,
'6': '.tensorflow.Features.FeatureEntry',
'10': 'feature'
},
],
'3': const [Features_FeatureEntry$json],
};
@$core.Deprecated('Use featuresDescriptor instead')
const Features_FeatureEntry$json = const {
'1': 'FeatureEntry',
'2': const [
const {'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
const {
'1': 'value',
'3': 2,
'4': 1,
'5': 11,
'6': '.tensorflow.Feature',
'10': 'value'
},
],
'7': const {'7': true},
};
/// Descriptor for `Features`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List featuresDescriptor = $convert.base64Decode(
'CghGZWF0dXJlcxI7CgdmZWF0dXJlGAEgAygLMiEudGVuc29yZmxvdy5GZWF0dXJlcy5GZWF0dXJlRW50cnlSB2ZlYXR1cmUaTwoMRmVhdHVyZUVudHJ5EhAKA2tleRgBIAEoCVIDa2V5EikKBXZhbHVlGAIgASgLMhMudGVuc29yZmxvdy5GZWF0dXJlUgV2YWx1ZToCOAE=');
@$core.Deprecated('Use featureListDescriptor instead')
const FeatureList$json = const {
'1': 'FeatureList',
'2': const [
const {
'1': 'feature',
'3': 1,
'4': 3,
'5': 11,
'6': '.tensorflow.Feature',
'10': 'feature'
},
],
};
/// Descriptor for `FeatureList`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List featureListDescriptor = $convert.base64Decode(
'CgtGZWF0dXJlTGlzdBItCgdmZWF0dXJlGAEgAygLMhMudGVuc29yZmxvdy5GZWF0dXJlUgdmZWF0dXJl');
@$core.Deprecated('Use featureListsDescriptor instead')
const FeatureLists$json = const {
'1': 'FeatureLists',
'2': const [
const {
'1': 'feature_list',
'3': 1,
'4': 3,
'5': 11,
'6': '.tensorflow.FeatureLists.FeatureListEntry',
'10': 'featureList'
},
],
'3': const [FeatureLists_FeatureListEntry$json],
};
@$core.Deprecated('Use featureListsDescriptor instead')
const FeatureLists_FeatureListEntry$json = const {
'1': 'FeatureListEntry',
'2': const [
const {'1': 'key', '3': 1, '4': 1, '5': 9, '10': 'key'},
const {
'1': 'value',
'3': 2,
'4': 1,
'5': 11,
'6': '.tensorflow.FeatureList',
'10': 'value'
},
],
'7': const {'7': true},
};
/// Descriptor for `FeatureLists`. Decode as a `google.protobuf.DescriptorProto`.
final $typed_data.Uint8List featureListsDescriptor = $convert.base64Decode(
'CgxGZWF0dXJlTGlzdHMSTAoMZmVhdHVyZV9saXN0GAEgAygLMikudGVuc29yZmxvdy5GZWF0dXJlTGlzdHMuRmVhdHVyZUxpc3RFbnRyeVILZmVhdHVyZUxpc3QaVwoQRmVhdHVyZUxpc3RFbnRyeRIQCgNrZXkYASABKAlSA2tleRItCgV2YWx1ZRgCIAEoCzIXLnRlbnNvcmZsb3cuRmVhdHVyZUxpc3RSBXZhbHVlOgI4AQ==');
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/example/feature.pbjson.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/example/feature.pbjson.dart",
"repo_id": "codelabs",
"token_count": 2803
} | 57 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/op_def.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
import 'dart:core' as $core;
import 'package:fixnum/fixnum.dart' as $fixnum;
import 'package:protobuf/protobuf.dart' as $pb;
import 'resource_handle.pb.dart' as $0;
import 'full_type.pb.dart' as $1;
import 'attr_value.pb.dart' as $2;
import 'types.pbenum.dart' as $3;
class OpDef_ArgDef extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'OpDef.ArgDef',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..aOS(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'name')
..aOS(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'description')
..e<$3.DataType>(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'type',
$pb.PbFieldType.OE,
defaultOrMaker: $3.DataType.DT_INVALID,
valueOf: $3.DataType.valueOf,
enumValues: $3.DataType.values)
..aOS(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'typeAttr')
..aOS(
5,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'numberAttr')
..aOS(
6,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'typeListAttr')
..pc<$0.ResourceHandleProto_DtypeAndShape>(
7,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'handleData',
$pb.PbFieldType.PM,
subBuilder: $0.ResourceHandleProto_DtypeAndShape.create)
..aOB(
16,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'isRef')
..aOM<$1.FullTypeDef>(
17,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'experimentalFullType',
subBuilder: $1.FullTypeDef.create)
..hasRequiredFields = false;
OpDef_ArgDef._() : super();
factory OpDef_ArgDef({
$core.String? name,
$core.String? description,
$3.DataType? type,
$core.String? typeAttr,
$core.String? numberAttr,
$core.String? typeListAttr,
$core.Iterable<$0.ResourceHandleProto_DtypeAndShape>? handleData,
$core.bool? isRef,
$1.FullTypeDef? experimentalFullType,
}) {
final _result = create();
if (name != null) {
_result.name = name;
}
if (description != null) {
_result.description = description;
}
if (type != null) {
_result.type = type;
}
if (typeAttr != null) {
_result.typeAttr = typeAttr;
}
if (numberAttr != null) {
_result.numberAttr = numberAttr;
}
if (typeListAttr != null) {
_result.typeListAttr = typeListAttr;
}
if (handleData != null) {
_result.handleData.addAll(handleData);
}
if (isRef != null) {
_result.isRef = isRef;
}
if (experimentalFullType != null) {
_result.experimentalFullType = experimentalFullType;
}
return _result;
}
factory OpDef_ArgDef.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory OpDef_ArgDef.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
OpDef_ArgDef clone() => OpDef_ArgDef()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
OpDef_ArgDef copyWith(void Function(OpDef_ArgDef) updates) =>
super.copyWith((message) => updates(message as OpDef_ArgDef))
as OpDef_ArgDef; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static OpDef_ArgDef create() => OpDef_ArgDef._();
OpDef_ArgDef createEmptyInstance() => create();
static $pb.PbList<OpDef_ArgDef> createRepeated() =>
$pb.PbList<OpDef_ArgDef>();
@$core.pragma('dart2js:noInline')
static OpDef_ArgDef getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<OpDef_ArgDef>(create);
static OpDef_ArgDef? _defaultInstance;
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String v) {
$_setString(0, v);
}
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
void clearName() => clearField(1);
@$pb.TagNumber(2)
$core.String get description => $_getSZ(1);
@$pb.TagNumber(2)
set description($core.String v) {
$_setString(1, v);
}
@$pb.TagNumber(2)
$core.bool hasDescription() => $_has(1);
@$pb.TagNumber(2)
void clearDescription() => clearField(2);
@$pb.TagNumber(3)
$3.DataType get type => $_getN(2);
@$pb.TagNumber(3)
set type($3.DataType v) {
setField(3, v);
}
@$pb.TagNumber(3)
$core.bool hasType() => $_has(2);
@$pb.TagNumber(3)
void clearType() => clearField(3);
@$pb.TagNumber(4)
$core.String get typeAttr => $_getSZ(3);
@$pb.TagNumber(4)
set typeAttr($core.String v) {
$_setString(3, v);
}
@$pb.TagNumber(4)
$core.bool hasTypeAttr() => $_has(3);
@$pb.TagNumber(4)
void clearTypeAttr() => clearField(4);
@$pb.TagNumber(5)
$core.String get numberAttr => $_getSZ(4);
@$pb.TagNumber(5)
set numberAttr($core.String v) {
$_setString(4, v);
}
@$pb.TagNumber(5)
$core.bool hasNumberAttr() => $_has(4);
@$pb.TagNumber(5)
void clearNumberAttr() => clearField(5);
@$pb.TagNumber(6)
$core.String get typeListAttr => $_getSZ(5);
@$pb.TagNumber(6)
set typeListAttr($core.String v) {
$_setString(5, v);
}
@$pb.TagNumber(6)
$core.bool hasTypeListAttr() => $_has(5);
@$pb.TagNumber(6)
void clearTypeListAttr() => clearField(6);
@$pb.TagNumber(7)
$core.List<$0.ResourceHandleProto_DtypeAndShape> get handleData =>
$_getList(6);
@$pb.TagNumber(16)
$core.bool get isRef => $_getBF(7);
@$pb.TagNumber(16)
set isRef($core.bool v) {
$_setBool(7, v);
}
@$pb.TagNumber(16)
$core.bool hasIsRef() => $_has(7);
@$pb.TagNumber(16)
void clearIsRef() => clearField(16);
@$pb.TagNumber(17)
$1.FullTypeDef get experimentalFullType => $_getN(8);
@$pb.TagNumber(17)
set experimentalFullType($1.FullTypeDef v) {
setField(17, v);
}
@$pb.TagNumber(17)
$core.bool hasExperimentalFullType() => $_has(8);
@$pb.TagNumber(17)
void clearExperimentalFullType() => clearField(17);
@$pb.TagNumber(17)
$1.FullTypeDef ensureExperimentalFullType() => $_ensure(8);
}
class OpDef_AttrDef extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'OpDef.AttrDef',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..aOS(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'name')
..aOS(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'type')
..aOM<$2.AttrValue>(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'defaultValue',
subBuilder: $2.AttrValue.create)
..aOS(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'description')
..aOB(
5,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'hasMinimum')
..aInt64(
6,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'minimum')
..aOM<$2.AttrValue>(
7,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'allowedValues',
subBuilder: $2.AttrValue.create)
..hasRequiredFields = false;
OpDef_AttrDef._() : super();
factory OpDef_AttrDef({
$core.String? name,
$core.String? type,
$2.AttrValue? defaultValue,
$core.String? description,
$core.bool? hasMinimum,
$fixnum.Int64? minimum_6,
$2.AttrValue? allowedValues,
}) {
final _result = create();
if (name != null) {
_result.name = name;
}
if (type != null) {
_result.type = type;
}
if (defaultValue != null) {
_result.defaultValue = defaultValue;
}
if (description != null) {
_result.description = description;
}
if (hasMinimum != null) {
_result.hasMinimum = hasMinimum;
}
if (minimum_6 != null) {
_result.minimum_6 = minimum_6;
}
if (allowedValues != null) {
_result.allowedValues = allowedValues;
}
return _result;
}
factory OpDef_AttrDef.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory OpDef_AttrDef.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
OpDef_AttrDef clone() => OpDef_AttrDef()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
OpDef_AttrDef copyWith(void Function(OpDef_AttrDef) updates) =>
super.copyWith((message) => updates(message as OpDef_AttrDef))
as OpDef_AttrDef; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static OpDef_AttrDef create() => OpDef_AttrDef._();
OpDef_AttrDef createEmptyInstance() => create();
static $pb.PbList<OpDef_AttrDef> createRepeated() =>
$pb.PbList<OpDef_AttrDef>();
@$core.pragma('dart2js:noInline')
static OpDef_AttrDef getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<OpDef_AttrDef>(create);
static OpDef_AttrDef? _defaultInstance;
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String v) {
$_setString(0, v);
}
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
void clearName() => clearField(1);
@$pb.TagNumber(2)
$core.String get type => $_getSZ(1);
@$pb.TagNumber(2)
set type($core.String v) {
$_setString(1, v);
}
@$pb.TagNumber(2)
$core.bool hasType() => $_has(1);
@$pb.TagNumber(2)
void clearType() => clearField(2);
@$pb.TagNumber(3)
$2.AttrValue get defaultValue => $_getN(2);
@$pb.TagNumber(3)
set defaultValue($2.AttrValue v) {
setField(3, v);
}
@$pb.TagNumber(3)
$core.bool hasDefaultValue() => $_has(2);
@$pb.TagNumber(3)
void clearDefaultValue() => clearField(3);
@$pb.TagNumber(3)
$2.AttrValue ensureDefaultValue() => $_ensure(2);
@$pb.TagNumber(4)
$core.String get description => $_getSZ(3);
@$pb.TagNumber(4)
set description($core.String v) {
$_setString(3, v);
}
@$pb.TagNumber(4)
$core.bool hasDescription() => $_has(3);
@$pb.TagNumber(4)
void clearDescription() => clearField(4);
@$pb.TagNumber(5)
$core.bool get hasMinimum => $_getBF(4);
@$pb.TagNumber(5)
set hasMinimum($core.bool v) {
$_setBool(4, v);
}
@$pb.TagNumber(5)
$core.bool hasHasMinimum() => $_has(4);
@$pb.TagNumber(5)
void clearHasMinimum() => clearField(5);
@$pb.TagNumber(6)
$fixnum.Int64 get minimum_6 => $_getI64(5);
@$pb.TagNumber(6)
set minimum_6($fixnum.Int64 v) {
$_setInt64(5, v);
}
@$pb.TagNumber(6)
$core.bool hasMinimum_6() => $_has(5);
@$pb.TagNumber(6)
void clearMinimum_6() => clearField(6);
@$pb.TagNumber(7)
$2.AttrValue get allowedValues => $_getN(6);
@$pb.TagNumber(7)
set allowedValues($2.AttrValue v) {
setField(7, v);
}
@$pb.TagNumber(7)
$core.bool hasAllowedValues() => $_has(6);
@$pb.TagNumber(7)
void clearAllowedValues() => clearField(7);
@$pb.TagNumber(7)
$2.AttrValue ensureAllowedValues() => $_ensure(6);
}
class OpDef extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'OpDef',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..aOS(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'name')
..pc<OpDef_ArgDef>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'inputArg',
$pb.PbFieldType.PM,
subBuilder: OpDef_ArgDef.create)
..pc<OpDef_ArgDef>(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'outputArg',
$pb.PbFieldType.PM,
subBuilder: OpDef_ArgDef.create)
..pc<OpDef_AttrDef>(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'attr',
$pb.PbFieldType.PM,
subBuilder: OpDef_AttrDef.create)
..aOS(
5,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'summary')
..aOS(
6,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'description')
..aOM<OpDeprecation>(
8,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'deprecation',
subBuilder: OpDeprecation.create)
..aOB(
16,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'isAggregate')
..aOB(
17,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'isStateful')
..aOB(
18,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'isCommutative')
..aOB(
19,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'allowsUninitializedInput')
..pPS(
20,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'controlOutput')
..aOB(
21,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'isDistributedCommunication')
..hasRequiredFields = false;
OpDef._() : super();
factory OpDef({
$core.String? name,
$core.Iterable<OpDef_ArgDef>? inputArg,
$core.Iterable<OpDef_ArgDef>? outputArg,
$core.Iterable<OpDef_AttrDef>? attr,
$core.String? summary,
$core.String? description,
OpDeprecation? deprecation,
$core.bool? isAggregate,
$core.bool? isStateful,
$core.bool? isCommutative,
$core.bool? allowsUninitializedInput,
$core.Iterable<$core.String>? controlOutput,
$core.bool? isDistributedCommunication,
}) {
final _result = create();
if (name != null) {
_result.name = name;
}
if (inputArg != null) {
_result.inputArg.addAll(inputArg);
}
if (outputArg != null) {
_result.outputArg.addAll(outputArg);
}
if (attr != null) {
_result.attr.addAll(attr);
}
if (summary != null) {
_result.summary = summary;
}
if (description != null) {
_result.description = description;
}
if (deprecation != null) {
_result.deprecation = deprecation;
}
if (isAggregate != null) {
_result.isAggregate = isAggregate;
}
if (isStateful != null) {
_result.isStateful = isStateful;
}
if (isCommutative != null) {
_result.isCommutative = isCommutative;
}
if (allowsUninitializedInput != null) {
_result.allowsUninitializedInput = allowsUninitializedInput;
}
if (controlOutput != null) {
_result.controlOutput.addAll(controlOutput);
}
if (isDistributedCommunication != null) {
_result.isDistributedCommunication = isDistributedCommunication;
}
return _result;
}
factory OpDef.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory OpDef.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
OpDef clone() => OpDef()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
OpDef copyWith(void Function(OpDef) updates) =>
super.copyWith((message) => updates(message as OpDef))
as OpDef; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static OpDef create() => OpDef._();
OpDef createEmptyInstance() => create();
static $pb.PbList<OpDef> createRepeated() => $pb.PbList<OpDef>();
@$core.pragma('dart2js:noInline')
static OpDef getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<OpDef>(create);
static OpDef? _defaultInstance;
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String v) {
$_setString(0, v);
}
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
void clearName() => clearField(1);
@$pb.TagNumber(2)
$core.List<OpDef_ArgDef> get inputArg => $_getList(1);
@$pb.TagNumber(3)
$core.List<OpDef_ArgDef> get outputArg => $_getList(2);
@$pb.TagNumber(4)
$core.List<OpDef_AttrDef> get attr => $_getList(3);
@$pb.TagNumber(5)
$core.String get summary => $_getSZ(4);
@$pb.TagNumber(5)
set summary($core.String v) {
$_setString(4, v);
}
@$pb.TagNumber(5)
$core.bool hasSummary() => $_has(4);
@$pb.TagNumber(5)
void clearSummary() => clearField(5);
@$pb.TagNumber(6)
$core.String get description => $_getSZ(5);
@$pb.TagNumber(6)
set description($core.String v) {
$_setString(5, v);
}
@$pb.TagNumber(6)
$core.bool hasDescription() => $_has(5);
@$pb.TagNumber(6)
void clearDescription() => clearField(6);
@$pb.TagNumber(8)
OpDeprecation get deprecation => $_getN(6);
@$pb.TagNumber(8)
set deprecation(OpDeprecation v) {
setField(8, v);
}
@$pb.TagNumber(8)
$core.bool hasDeprecation() => $_has(6);
@$pb.TagNumber(8)
void clearDeprecation() => clearField(8);
@$pb.TagNumber(8)
OpDeprecation ensureDeprecation() => $_ensure(6);
@$pb.TagNumber(16)
$core.bool get isAggregate => $_getBF(7);
@$pb.TagNumber(16)
set isAggregate($core.bool v) {
$_setBool(7, v);
}
@$pb.TagNumber(16)
$core.bool hasIsAggregate() => $_has(7);
@$pb.TagNumber(16)
void clearIsAggregate() => clearField(16);
@$pb.TagNumber(17)
$core.bool get isStateful => $_getBF(8);
@$pb.TagNumber(17)
set isStateful($core.bool v) {
$_setBool(8, v);
}
@$pb.TagNumber(17)
$core.bool hasIsStateful() => $_has(8);
@$pb.TagNumber(17)
void clearIsStateful() => clearField(17);
@$pb.TagNumber(18)
$core.bool get isCommutative => $_getBF(9);
@$pb.TagNumber(18)
set isCommutative($core.bool v) {
$_setBool(9, v);
}
@$pb.TagNumber(18)
$core.bool hasIsCommutative() => $_has(9);
@$pb.TagNumber(18)
void clearIsCommutative() => clearField(18);
@$pb.TagNumber(19)
$core.bool get allowsUninitializedInput => $_getBF(10);
@$pb.TagNumber(19)
set allowsUninitializedInput($core.bool v) {
$_setBool(10, v);
}
@$pb.TagNumber(19)
$core.bool hasAllowsUninitializedInput() => $_has(10);
@$pb.TagNumber(19)
void clearAllowsUninitializedInput() => clearField(19);
@$pb.TagNumber(20)
$core.List<$core.String> get controlOutput => $_getList(11);
@$pb.TagNumber(21)
$core.bool get isDistributedCommunication => $_getBF(12);
@$pb.TagNumber(21)
set isDistributedCommunication($core.bool v) {
$_setBool(12, v);
}
@$pb.TagNumber(21)
$core.bool hasIsDistributedCommunication() => $_has(12);
@$pb.TagNumber(21)
void clearIsDistributedCommunication() => clearField(21);
}
class OpDeprecation extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'OpDeprecation',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..a<$core.int>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'version',
$pb.PbFieldType.O3)
..aOS(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'explanation')
..hasRequiredFields = false;
OpDeprecation._() : super();
factory OpDeprecation({
$core.int? version,
$core.String? explanation,
}) {
final _result = create();
if (version != null) {
_result.version = version;
}
if (explanation != null) {
_result.explanation = explanation;
}
return _result;
}
factory OpDeprecation.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory OpDeprecation.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
OpDeprecation clone() => OpDeprecation()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
OpDeprecation copyWith(void Function(OpDeprecation) updates) =>
super.copyWith((message) => updates(message as OpDeprecation))
as OpDeprecation; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static OpDeprecation create() => OpDeprecation._();
OpDeprecation createEmptyInstance() => create();
static $pb.PbList<OpDeprecation> createRepeated() =>
$pb.PbList<OpDeprecation>();
@$core.pragma('dart2js:noInline')
static OpDeprecation getDefault() => _defaultInstance ??=
$pb.GeneratedMessage.$_defaultFor<OpDeprecation>(create);
static OpDeprecation? _defaultInstance;
@$pb.TagNumber(1)
$core.int get version => $_getIZ(0);
@$pb.TagNumber(1)
set version($core.int v) {
$_setSignedInt32(0, v);
}
@$pb.TagNumber(1)
$core.bool hasVersion() => $_has(0);
@$pb.TagNumber(1)
void clearVersion() => clearField(1);
@$pb.TagNumber(2)
$core.String get explanation => $_getSZ(1);
@$pb.TagNumber(2)
set explanation($core.String v) {
$_setString(1, v);
}
@$pb.TagNumber(2)
$core.bool hasExplanation() => $_has(1);
@$pb.TagNumber(2)
void clearExplanation() => clearField(2);
}
class OpList extends $pb.GeneratedMessage {
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'OpList',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow'),
createEmptyInstance: create)
..pc<OpDef>(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'op',
$pb.PbFieldType.PM,
subBuilder: OpDef.create)
..hasRequiredFields = false;
OpList._() : super();
factory OpList({
$core.Iterable<OpDef>? op,
}) {
final _result = create();
if (op != null) {
_result.op.addAll(op);
}
return _result;
}
factory OpList.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory OpList.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
OpList clone() => OpList()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
OpList copyWith(void Function(OpList) updates) =>
super.copyWith((message) => updates(message as OpList))
as OpList; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static OpList create() => OpList._();
OpList createEmptyInstance() => create();
static $pb.PbList<OpList> createRepeated() => $pb.PbList<OpList>();
@$core.pragma('dart2js:noInline')
static OpList getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<OpList>(create);
static OpList? _defaultInstance;
@$pb.TagNumber(1)
$core.List<OpDef> get op => $_getList(0);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/op_def.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/op_def.pb.dart",
"repo_id": "codelabs",
"token_count": 11799
} | 58 |
///
// Generated code. Do not modify.
// source: tensorflow/core/framework/variable.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
// ignore_for_file: UNDEFINED_SHOWN_NAME
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
class VariableSynchronization extends $pb.ProtobufEnum {
static const VariableSynchronization VARIABLE_SYNCHRONIZATION_AUTO =
VariableSynchronization._(
0,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'VARIABLE_SYNCHRONIZATION_AUTO');
static const VariableSynchronization VARIABLE_SYNCHRONIZATION_NONE =
VariableSynchronization._(
1,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'VARIABLE_SYNCHRONIZATION_NONE');
static const VariableSynchronization VARIABLE_SYNCHRONIZATION_ON_WRITE =
VariableSynchronization._(
2,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'VARIABLE_SYNCHRONIZATION_ON_WRITE');
static const VariableSynchronization VARIABLE_SYNCHRONIZATION_ON_READ =
VariableSynchronization._(
3,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'VARIABLE_SYNCHRONIZATION_ON_READ');
static const $core.List<VariableSynchronization> values =
<VariableSynchronization>[
VARIABLE_SYNCHRONIZATION_AUTO,
VARIABLE_SYNCHRONIZATION_NONE,
VARIABLE_SYNCHRONIZATION_ON_WRITE,
VARIABLE_SYNCHRONIZATION_ON_READ,
];
static final $core.Map<$core.int, VariableSynchronization> _byValue =
$pb.ProtobufEnum.initByValue(values);
static VariableSynchronization? valueOf($core.int value) => _byValue[value];
const VariableSynchronization._($core.int v, $core.String n) : super(v, n);
}
class VariableAggregation extends $pb.ProtobufEnum {
static const VariableAggregation VARIABLE_AGGREGATION_NONE =
VariableAggregation._(
0,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'VARIABLE_AGGREGATION_NONE');
static const VariableAggregation VARIABLE_AGGREGATION_SUM =
VariableAggregation._(
1,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'VARIABLE_AGGREGATION_SUM');
static const VariableAggregation VARIABLE_AGGREGATION_MEAN =
VariableAggregation._(
2,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'VARIABLE_AGGREGATION_MEAN');
static const VariableAggregation VARIABLE_AGGREGATION_ONLY_FIRST_REPLICA =
VariableAggregation._(
3,
const $core.bool.fromEnvironment('protobuf.omit_enum_names')
? ''
: 'VARIABLE_AGGREGATION_ONLY_FIRST_REPLICA');
static const $core.List<VariableAggregation> values = <VariableAggregation>[
VARIABLE_AGGREGATION_NONE,
VARIABLE_AGGREGATION_SUM,
VARIABLE_AGGREGATION_MEAN,
VARIABLE_AGGREGATION_ONLY_FIRST_REPLICA,
];
static final $core.Map<$core.int, VariableAggregation> _byValue =
$pb.ProtobufEnum.initByValue(values);
static VariableAggregation? valueOf($core.int value) => _byValue[value];
const VariableAggregation._($core.int v, $core.String n) : super(v, n);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/variable.pbenum.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow/core/framework/variable.pbenum.dart",
"repo_id": "codelabs",
"token_count": 1583
} | 59 |
///
// Generated code. Do not modify.
// source: tensorflow_serving/apis/model.proto
//
// @dart = 2.12
// ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
import 'dart:core' as $core;
import 'package:protobuf/protobuf.dart' as $pb;
import '../../google/protobuf/wrappers.pb.dart' as $0;
enum ModelSpec_VersionChoice { version, versionLabel, notSet }
class ModelSpec extends $pb.GeneratedMessage {
static const $core.Map<$core.int, ModelSpec_VersionChoice>
_ModelSpec_VersionChoiceByTag = {
2: ModelSpec_VersionChoice.version,
4: ModelSpec_VersionChoice.versionLabel,
0: ModelSpec_VersionChoice.notSet
};
static final $pb.BuilderInfo _i = $pb.BuilderInfo(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'ModelSpec',
package: const $pb.PackageName(
const $core.bool.fromEnvironment('protobuf.omit_message_names')
? ''
: 'tensorflow.serving'),
createEmptyInstance: create)
..oo(0, [2, 4])
..aOS(
1,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'name')
..aOM<$0.Int64Value>(
2,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'version',
subBuilder: $0.Int64Value.create)
..aOS(
3,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'signatureName')
..aOS(
4,
const $core.bool.fromEnvironment('protobuf.omit_field_names')
? ''
: 'versionLabel')
..hasRequiredFields = false;
ModelSpec._() : super();
factory ModelSpec({
$core.String? name,
$0.Int64Value? version,
$core.String? signatureName,
$core.String? versionLabel,
}) {
final _result = create();
if (name != null) {
_result.name = name;
}
if (version != null) {
_result.version = version;
}
if (signatureName != null) {
_result.signatureName = signatureName;
}
if (versionLabel != null) {
_result.versionLabel = versionLabel;
}
return _result;
}
factory ModelSpec.fromBuffer($core.List<$core.int> i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromBuffer(i, r);
factory ModelSpec.fromJson($core.String i,
[$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) =>
create()..mergeFromJson(i, r);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.deepCopy] instead. '
'Will be removed in next major version')
ModelSpec clone() => ModelSpec()..mergeFromMessage(this);
@$core.Deprecated('Using this can add significant overhead to your binary. '
'Use [GeneratedMessageGenericExtensions.rebuild] instead. '
'Will be removed in next major version')
ModelSpec copyWith(void Function(ModelSpec) updates) =>
super.copyWith((message) => updates(message as ModelSpec))
as ModelSpec; // ignore: deprecated_member_use
$pb.BuilderInfo get info_ => _i;
@$core.pragma('dart2js:noInline')
static ModelSpec create() => ModelSpec._();
ModelSpec createEmptyInstance() => create();
static $pb.PbList<ModelSpec> createRepeated() => $pb.PbList<ModelSpec>();
@$core.pragma('dart2js:noInline')
static ModelSpec getDefault() =>
_defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ModelSpec>(create);
static ModelSpec? _defaultInstance;
ModelSpec_VersionChoice whichVersionChoice() =>
_ModelSpec_VersionChoiceByTag[$_whichOneof(0)]!;
void clearVersionChoice() => clearField($_whichOneof(0));
@$pb.TagNumber(1)
$core.String get name => $_getSZ(0);
@$pb.TagNumber(1)
set name($core.String v) {
$_setString(0, v);
}
@$pb.TagNumber(1)
$core.bool hasName() => $_has(0);
@$pb.TagNumber(1)
void clearName() => clearField(1);
@$pb.TagNumber(2)
$0.Int64Value get version => $_getN(1);
@$pb.TagNumber(2)
set version($0.Int64Value v) {
setField(2, v);
}
@$pb.TagNumber(2)
$core.bool hasVersion() => $_has(1);
@$pb.TagNumber(2)
void clearVersion() => clearField(2);
@$pb.TagNumber(2)
$0.Int64Value ensureVersion() => $_ensure(1);
@$pb.TagNumber(3)
$core.String get signatureName => $_getSZ(2);
@$pb.TagNumber(3)
set signatureName($core.String v) {
$_setString(2, v);
}
@$pb.TagNumber(3)
$core.bool hasSignatureName() => $_has(2);
@$pb.TagNumber(3)
void clearSignatureName() => clearField(3);
@$pb.TagNumber(4)
$core.String get versionLabel => $_getSZ(3);
@$pb.TagNumber(4)
set versionLabel($core.String v) {
$_setString(3, v);
}
@$pb.TagNumber(4)
$core.bool hasVersionLabel() => $_has(3);
@$pb.TagNumber(4)
void clearVersionLabel() => clearField(4);
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/model.pb.dart/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/generated/tensorflow_serving/apis/model.pb.dart",
"repo_id": "codelabs",
"token_count": 2051
} | 60 |
// Protocol messages for describing features for machine learning model
// training or inference.
//
// There are three base Feature types:
// - bytes
// - float
// - int64
//
// A Feature contains Lists which may hold zero or more values. These
// lists are the base values BytesList, FloatList, Int64List.
//
// Features are organized into categories by name. The Features message
// contains the mapping from name to Feature.
//
// Example Features for a movie recommendation application:
// feature {
// key: "age"
// value { float_list {
// value: 29.0
// }}
// }
// feature {
// key: "movie"
// value { bytes_list {
// value: "The Shawshank Redemption"
// value: "Fight Club"
// }}
// }
// feature {
// key: "movie_ratings"
// value { float_list {
// value: 9.0
// value: 9.7
// }}
// }
// feature {
// key: "suggestion"
// value { bytes_list {
// value: "Inception"
// }}
// }
// feature {
// key: "suggestion_purchased"
// value { int64_list {
// value: 1
// }}
// }
// feature {
// key: "purchase_price"
// value { float_list {
// value: 9.99
// }}
// }
//
syntax = "proto3";
package tensorflow;
option cc_enable_arenas = true;
option java_outer_classname = "FeatureProtos";
option java_multiple_files = true;
option java_package = "org.tensorflow.example";
option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/example/example_protos_go_proto";
// LINT.IfChange
// Containers to hold repeated fundamental values.
message BytesList {
repeated bytes value = 1;
}
message FloatList {
repeated float value = 1 [packed = true];
}
message Int64List {
repeated int64 value = 1 [packed = true];
}
// Containers for non-sequential data.
message Feature {
// Each feature can be exactly one kind.
oneof kind {
BytesList bytes_list = 1;
FloatList float_list = 2;
Int64List int64_list = 3;
}
}
message Features {
// Map from feature name to feature.
map<string, Feature> feature = 1;
}
// Containers for sequential data.
//
// A FeatureList contains lists of Features. These may hold zero or more
// Feature values.
//
// FeatureLists are organized into categories by name. The FeatureLists message
// contains the mapping from name to FeatureList.
//
message FeatureList {
repeated Feature feature = 1;
}
message FeatureLists {
// Map from feature name to feature list.
map<string, FeatureList> feature_list = 1;
}
// LINT.ThenChange(
// https://www.tensorflow.org/code/tensorflow/python/training/training.py)
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/example/feature.proto/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/example/feature.proto",
"repo_id": "codelabs",
"token_count": 931
} | 61 |
syntax = "proto3";
package tensorflow;
import "tensorflow/core/framework/tensor.proto";
import "tensorflow/core/framework/tensor_shape.proto";
import "tensorflow/core/framework/types.proto";
option go_package = "github.com/tensorflow/tensorflow/tensorflow/go/core/protobuf/for_core_protos_go_proto";
// `StructuredValue` represents a dynamically typed value representing various
// data structures that are inspired by Python data structures typically used in
// TensorFlow functions as inputs and outputs.
//
// For example when saving a Layer there may be a `training` argument. If the
// user passes a boolean True/False, that switches between two concrete
// TensorFlow functions. In order to switch between them in the same way after
// loading the SavedModel, we need to represent "True" and "False".
//
// A more advanced example might be a function which takes a list of
// dictionaries mapping from strings to Tensors. In order to map from
// user-specified arguments `[{"a": tf.constant(1.)}, {"q": tf.constant(3.)}]`
// after load to the right saved TensorFlow function, we need to represent the
// nested structure and the strings, recording that we have a trace for anything
// matching `[{"a": tf.TensorSpec(None, tf.float32)}, {"q": tf.TensorSpec([],
// tf.float64)}]` as an example.
//
// Likewise functions may return nested structures of Tensors, for example
// returning a dictionary mapping from strings to Tensors. In order for the
// loaded function to return the same structure we need to serialize it.
//
// This is an ergonomic aid for working with loaded SavedModels, not a promise
// to serialize all possible function signatures. For example we do not expect
// to pickle generic Python objects, and ideally we'd stay language-agnostic.
message StructuredValue {
// The kind of value.
oneof kind {
// Represents None.
NoneValue none_value = 1;
// Represents a double-precision floating-point value (a Python `float`).
double float64_value = 11;
// Represents a signed integer value, limited to 64 bits.
// Larger values from Python's arbitrary-precision integers are unsupported.
sint64 int64_value = 12;
// Represents a string of Unicode characters stored in a Python `str`.
// In Python 3, this is exactly what type `str` is.
// In Python 2, this is the UTF-8 encoding of the characters.
// For strings with ASCII characters only (as often used in TensorFlow code)
// there is effectively no difference between the language versions.
// The obsolescent `unicode` type of Python 2 is not supported here.
string string_value = 13;
// Represents a boolean value.
bool bool_value = 14;
// Represents a TensorShape.
tensorflow.TensorShapeProto tensor_shape_value = 31;
// Represents an enum value for dtype.
tensorflow.DataType tensor_dtype_value = 32;
// Represents a value for tf.TensorSpec.
TensorSpecProto tensor_spec_value = 33;
// Represents a value for tf.TypeSpec.
TypeSpecProto type_spec_value = 34;
// Represents a value for tf.BoundedTensorSpec.
BoundedTensorSpecProto bounded_tensor_spec_value = 35;
// Represents a list of `Value`.
ListValue list_value = 51;
// Represents a tuple of `Value`.
TupleValue tuple_value = 52;
// Represents a dict `Value`.
DictValue dict_value = 53;
// Represents Python's namedtuple.
NamedTupleValue named_tuple_value = 54;
}
}
// Represents None.
message NoneValue {}
// Represents a Python list.
message ListValue {
repeated StructuredValue values = 1;
}
// Represents a Python tuple.
message TupleValue {
repeated StructuredValue values = 1;
}
// Represents a Python dict keyed by `str`.
// The comment on Unicode from Value.string_value applies analogously.
message DictValue {
map<string, StructuredValue> fields = 1;
}
// Represents a (key, value) pair.
message PairValue {
string key = 1;
StructuredValue value = 2;
}
// Represents Python's namedtuple.
message NamedTupleValue {
string name = 1;
repeated PairValue values = 2;
}
// A protobuf to represent tf.TensorSpec.
message TensorSpecProto {
string name = 1;
tensorflow.TensorShapeProto shape = 2;
tensorflow.DataType dtype = 3;
}
// A protobuf to represent tf.BoundedTensorSpec.
message BoundedTensorSpecProto {
string name = 1;
tensorflow.TensorShapeProto shape = 2;
tensorflow.DataType dtype = 3;
tensorflow.TensorProto minimum = 4;
tensorflow.TensorProto maximum = 5;
}
// Represents a tf.TypeSpec
message TypeSpecProto {
enum TypeSpecClass {
UNKNOWN = 0;
SPARSE_TENSOR_SPEC = 1; // tf.SparseTensorSpec
INDEXED_SLICES_SPEC = 2; // tf.IndexedSlicesSpec
RAGGED_TENSOR_SPEC = 3; // tf.RaggedTensorSpec
TENSOR_ARRAY_SPEC = 4; // tf.TensorArraySpec
DATA_DATASET_SPEC = 5; // tf.data.DatasetSpec
DATA_ITERATOR_SPEC = 6; // IteratorSpec from data/ops/iterator_ops.py
OPTIONAL_SPEC = 7; // tf.OptionalSpec
PER_REPLICA_SPEC = 8; // PerReplicaSpec from distribute/values.py
VARIABLE_SPEC = 9; // tf.VariableSpec
ROW_PARTITION_SPEC = 10; // RowPartitionSpec from ragged/row_partition.py
reserved 11;
REGISTERED_TYPE_SPEC = 12; // The type registered as type_spec_class_name.
EXTENSION_TYPE_SPEC = 13; // Subclasses of tf.ExtensionType
}
TypeSpecClass type_spec_class = 1;
// The value returned by TypeSpec._serialize().
StructuredValue type_state = 2;
// The name of the TypeSpec class.
// * If type_spec_class == REGISTERED_TYPE_SPEC, the TypeSpec class is
// the one registered under this name. For types registered outside
// core TensorFlow by an add-on library, that library must be loaded
// before this value can be deserialized by nested_structure_coder.
// * If type_spec_class specifies a particular TypeSpec class, this field is
// redundant with the type_spec_class enum, and is only used for error
// reporting in older binaries that do not know the tupe_spec_class enum.
string type_spec_class_name = 3;
// The number of flat tensor components required by this TypeSpec.
int32 num_flat_components = 4;
}
| codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/protobuf/struct.proto/0 | {
"file_path": "codelabs/tfserving-flutter/codelab2/starter/lib/proto/tensorflow/core/protobuf/struct.proto",
"repo_id": "codelabs",
"token_count": 1983
} | 62 |
// Copyright 2023 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:convert';
import 'dart:io';
import 'package:args/args.dart';
import 'package:claat_export_images/claat_export_images.dart';
import 'package:claat_export_images/client_secret.dart';
import 'package:googleapis/docs/v1.dart' as google_docs;
import 'package:googleapis_auth/auth_io.dart';
import 'package:http/http.dart' as http;
import 'package:image/image.dart';
import 'package:path/path.dart' as path;
void main(List<String> arguments) async {
final argParser = ArgParser();
argParser.addFlag(
'help',
abbr: 'h',
negatable: false,
help: 'Display usage',
);
argParser.addOption(
'client-secrets',
abbr: 's',
mandatory: true,
help: 'The path to the client_secrets.json file',
);
argParser.addOption(
'doc-id',
abbr: 'd',
mandatory: true,
help: 'The document ID to export the images of',
);
argParser.parse(arguments);
final args = argParser.parse(arguments);
if (args['help']) {
print(argParser.usage);
exit(-1);
}
final clientSecret = ClientSecret.fromJson(
jsonDecode(
await File(args['client-secrets']).readAsString(),
),
);
final gDocID = args['doc-id'];
final client = await obtainCredentials(
clientID: clientSecret.installed.clientId,
clientSecret: clientSecret.installed.clientSecret,
);
final apiClient = google_docs.DocsApi(client);
final document = await apiClient.documents
.get(gDocID, suggestionsViewMode: 'PREVIEW_WITHOUT_SUGGESTIONS');
final uris = claatImageUris(document);
Directory('img').createSync();
int imageCount = 0;
for (final uri in uris) {
final response = await http.get(uri);
if (PngDecoder().isValidFile(response.bodyBytes)) {
File(path.join('img', '${uri.pathSegments.last}.png'))
.writeAsBytesSync(response.bodyBytes);
imageCount += 1;
} else if (JpegDecoder().isValidFile(response.bodyBytes)) {
File(path.join('img', '${uri.pathSegments.last}.jpg'))
.writeAsBytesSync(response.bodyBytes);
imageCount += 1;
} else if (GifDecoder().isValidFile(response.bodyBytes)) {
File(path.join('img', '${uri.pathSegments.last}.gif'))
.writeAsBytesSync(response.bodyBytes);
imageCount += 1;
} else if (WebPDecoder().isValidFile(response.bodyBytes)) {
File(path.join('img', '${uri.pathSegments.last}.webp'))
.writeAsBytesSync(response.bodyBytes);
imageCount += 1;
} else {
print('Unknown image format: $uri');
}
}
print('Wrote $imageCount images to img/');
}
Future<AuthClient> obtainCredentials(
{required String clientID, required String clientSecret}) async =>
await clientViaUserConsent(
ClientId(clientID, clientSecret),
[google_docs.DocsApi.driveReadonlyScope],
_prompt,
);
void _prompt(String url) {
print('Please go to the following URL and grant access:');
print(' => $url');
print('');
}
| codelabs/tooling/claat_export_images/bin/claat_export_images.dart/0 | {
"file_path": "codelabs/tooling/claat_export_images/bin/claat_export_images.dart",
"repo_id": "codelabs",
"token_count": 1170
} | 63 |
include: ../../analysis_options.yaml
| codelabs/webview_flutter/step_03/analysis_options.yaml/0 | {
"file_path": "codelabs/webview_flutter/step_03/analysis_options.yaml",
"repo_id": "codelabs",
"token_count": 12
} | 64 |
// Copyright 2022 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:webview_flutter/webview_flutter.dart';
class WebViewStack extends StatefulWidget {
const WebViewStack({required this.controller, super.key});
final WebViewController controller;
@override
State<WebViewStack> createState() => _WebViewStackState();
}
class _WebViewStackState extends State<WebViewStack> {
var loadingPercentage = 0;
@override
void initState() {
super.initState();
widget.controller.setNavigationDelegate(
NavigationDelegate(
onPageStarted: (url) {
setState(() {
loadingPercentage = 0;
});
},
onProgress: (progress) {
setState(() {
loadingPercentage = progress;
});
},
onPageFinished: (url) {
setState(() {
loadingPercentage = 100;
});
},
),
);
}
@override
Widget build(BuildContext context) {
return Stack(
children: [
WebViewWidget(
controller: widget.controller,
),
if (loadingPercentage < 100)
LinearProgressIndicator(
value: loadingPercentage / 100.0,
),
],
);
}
}
| codelabs/webview_flutter/step_06/lib/src/web_view_stack.dart/0 | {
"file_path": "codelabs/webview_flutter/step_06/lib/src/web_view_stack.dart",
"repo_id": "codelabs",
"token_count": 578
} | 65 |
#import "GeneratedPluginRegistrant.h"
| codelabs/webview_flutter/step_08/ios/Runner/Runner-Bridging-Header.h/0 | {
"file_path": "codelabs/webview_flutter/step_08/ios/Runner/Runner-Bridging-Header.h",
"repo_id": "codelabs",
"token_count": 13
} | 66 |
org.gradle.jvmargs=-Xmx4G
android.useAndroidX=true
android.enableJetifier=true
| codelabs/webview_flutter/step_11/android/gradle.properties/0 | {
"file_path": "codelabs/webview_flutter/step_11/android/gradle.properties",
"repo_id": "codelabs",
"token_count": 30
} | 67 |
* @flutter/devtools-reviewers
# Inspector Files
inspector/ @CoderDake
# Network Files
network/ @kenzieschmoll @bkonyi
# Performance Files
performance/ @kenzieschmoll
# CPU Profiler files
profiler/ @kenzieschmoll
# Memory files
memory/ @bkonyi @polina-c
# Memory leak tracking files
memory/panes/leaks @CoderDake @polina-c
# Debugger files
debugger/ @elliette
# VM Developer files
vm_developer/ @bkonyi
# Tooling files
/tool/ @CoderDake
packages/devtools_extensions/ @kenzieschmoll
# Version bump files.
# No owners to prevent version update spam
packages/devtools_app/lib/devtools.dart
packages/devtools_app/pubspec.yaml
packages/devtools_test/pubspec.yaml
| devtools/CODEOWNERS/0 | {
"file_path": "devtools/CODEOWNERS",
"repo_id": "devtools",
"token_count": 342
} | 68 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.