Skip to content

Commit e8c14a5

Browse files
committed
Merge branch 'master' of https://github.com/flutter/website
2 parents 56cdff6 + d617d9b commit e8c14a5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/docs/deployment/cd.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ delivery from a local machine.
4646

4747
1. Install fastlane `gem install fastlane` or `brew install fastlane`.
4848
Visit the [fastlane docs][fastlane] for more info.
49+
1. Create an environment variable named `FLUTTER_ROOT`,
50+
and set it to the root directory of your Flutter SDK.
51+
(This is required for the scripts that deploy for iOS.)
4952
1. Create your Flutter project, and when ready, make sure that your project builds via
5053
* ![Android](/images/cd/android.png) `flutter build appbundle`; and
5154
* ![iOS](/images/cd/ios.png) `flutter build ios --release --no-codesign`.

src/docs/development/ui/layout/building-adaptive-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ void _handleKey(event){
762762
bool isShiftDown = isKeyDown({
763763
LogicalKeyboardKey.shiftLeft,
764764
LogicalKeyboardKey.shiftRight,
765-
|);
765+
});
766766
if(isShiftDown && event.logicalKey == LogicalKeyboardKey.keyN){
767767
_createNewItem();
768768
}

0 commit comments

Comments
 (0)