File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ delivery from a local machine.
4646
47471 . Install fastlane ` gem install fastlane ` or ` brew install fastlane ` .
4848Visit 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.)
49521 . 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 ` .
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments