Explore Enterprise Education Gitee Premium Gitee AI AI teammates
Fetch the repository succeeded.
Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
Already have an account? Sign in
文件
master
Branches (883)
Tags (1072)
master
gh-readonly-queue/master/pr-179670-ee7e28ec979562d0ab722fd24b5e145068ec6b63
gh-readonly-queue/master/pr-179759-cbb7a618809ee9dfb525ca6ea28044e016718ae7
gh-readonly-queue/master/pr-181716-399a692f7db0bd5faba36003d67880776a3767d3
main
test-branch-creation
use-super-tools
use-super-framework
flutter-3.41-candidate.0
stable
beta
flutter-3.42-candidate.0
unawaited-futures-draft
use-super-dev
revert-181685-update_date_localization
flutter-3.38-candidate.0
issue-triage-additional-info
code-assets-install-cache-fix
icon-data-class-modifier
zanderso-patch-3
3.41.2
3.42.0-0.1.pre
3.42.0-0.2.pre
3.41.1
3.38.10
3.42.0-0.0.pre
3.41.0
3.41.0-0.3.pre
3.38.9
3.41.0-0.2.pre
3.38.8
3.41.0-0.1.pre
3.41.0-0.0.pre
3.38.7
3.38.6
3.40.0-0.2.pre
3.38.5
3.40.0-0.1.pre
3.38.4
3.39.0-0.2.pre
master
Branches (883)
Tags (1072)
master
gh-readonly-queue/master/pr-179670-ee7e28ec979562d0ab722fd24b5e145068ec6b63
gh-readonly-queue/master/pr-179759-cbb7a618809ee9dfb525ca6ea28044e016718ae7
gh-readonly-queue/master/pr-181716-399a692f7db0bd5faba36003d67880776a3767d3
main
test-branch-creation
use-super-tools
use-super-framework
flutter-3.41-candidate.0
stable
beta
flutter-3.42-candidate.0
unawaited-futures-draft
use-super-dev
revert-181685-update_date_localization
flutter-3.38-candidate.0
issue-triage-additional-info
code-assets-install-cache-fix
icon-data-class-modifier
zanderso-patch-3
3.41.2
3.42.0-0.1.pre
3.42.0-0.2.pre
3.41.1
3.38.10
3.42.0-0.0.pre
3.41.0
3.41.0-0.3.pre
3.38.9
3.41.0-0.2.pre
3.38.8
3.41.0-0.1.pre
3.41.0-0.0.pre
3.38.7
3.38.6
3.40.0-0.2.pre
3.38.5
3.40.0-0.1.pre
3.38.4
3.39.0-0.2.pre
Clone or Download
Clone/Download
Prompt
To download the code, please copy the following command and execute it in the terminal
To ensure that your submitted code identity is correctly recognized by Gitee, please execute the following command.
When using the SSH protocol for the first time to clone or push code, follow the prompts below to complete the SSH configuration.
1 Generate RSA keys.
2 Obtain the content of the RSA public key and configure it in SSH Public Keys
To use SVN on Gitee, please visit the usage guide
When using the HTTPS protocol, the command line will prompt for account and password verification as follows. For security reasons, Gitee recommends configure and use personal access tokens instead of login passwords for cloning, pushing, and other operations.
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # Private Token
master
Branches (883)
Tags (1072)
master
gh-readonly-queue/master/pr-179670-ee7e28ec979562d0ab722fd24b5e145068ec6b63
gh-readonly-queue/master/pr-179759-cbb7a618809ee9dfb525ca6ea28044e016718ae7
gh-readonly-queue/master/pr-181716-399a692f7db0bd5faba36003d67880776a3767d3
main
test-branch-creation
use-super-tools
use-super-framework
flutter-3.41-candidate.0
stable
beta
flutter-3.42-candidate.0
unawaited-futures-draft
use-super-dev
revert-181685-update_date_localization
flutter-3.38-candidate.0
issue-triage-additional-info
code-assets-install-cache-fix
icon-data-class-modifier
zanderso-patch-3
3.41.2
3.42.0-0.1.pre
3.42.0-0.2.pre
3.41.1
3.38.10
3.42.0-0.0.pre
3.41.0
3.41.0-0.3.pre
3.38.9
3.41.0-0.2.pre
3.38.8
3.41.0-0.1.pre
3.41.0-0.0.pre
3.38.7
3.38.6
3.40.0-0.2.pre
3.38.5
3.40.0-0.1.pre
3.38.4
3.39.0-0.2.pre
flutter
/
bin
/
flutter-dev
flutter
/
bin
/
flutter-dev
flutter-dev 2.83 KB
Copy Edit Raw Blame History
#!/usr/bin/env bash
# Copyright 2014 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.
# ---------------------------------- NOTE ---------------------------------- #
#
# Please keep the logic in this file consistent with the logic in the
# `flutter-dev.bat` script in the same directory to ensure that Flutter
# continues to work across all platforms!
#
# -------------------------------------------------------------------------- #
set -e
# This is a helper script for development purposes. It runs the Flutter tool
# from source code directly, without using the prebuilt snapshot. This is
# useful for development, as it allows you to make changes to the tool and see
# the effects immediately, but is much slower than using the prebuilt snapshot.
# To debug the tool, you can uncomment the following lines to enable debug
# mode and set a VM service port:
# FLUTTER_TOOL_ARGS="--enable-asserts $FLUTTER_TOOL_ARGS"
# FLUTTER_TOOL_ARGS="$FLUTTER_TOOL_ARGS --observe=65432"
# Needed because if it is set, cd may print the path it changed to.
unset CDPATH
# On Mac OS, readlink -f doesn't work, so follow_links traverses the path one
# link at a time, and then cds into the link destination and find out where it
# ends up.
#
# The returned filesystem path must be a format usable by Dart's URI parser,
# since the Dart command line tool treats its argument as a file URI, not a
# filename. For instance, multiple consecutive slashes should be reduced to a
# single slash, since double-slashes indicate a URI "authority", and these are
# supposed to be filenames. There is an edge case where this will return
# multiple slashes: when the input resolves to the root directory. However, if
# that were the case, we wouldn't be running this shell, so we don't do anything
# about it.
#
# The function is enclosed in a subshell to avoid changing the working directory
# of the caller.
function follow_links() (
cd -P -- "$(dirname -- "1ドル")"
file="$PWD/$(basename -- "1ドル")"
while [[ -h "$file" ]]; do
cd -P -- "$(dirname -- "$file")"
file="$(readlink -- "$file")"
cd -P -- "$(dirname -- "$file")"
file="$PWD/$(basename -- "$file")"
done
echo "$file"
)
# Lookup the parent directory of the script (../), the Flutter SDK root.
PROG_NAME="$(follow_links "${BASH_SOURCE[0]}")"
BIN_DIR="$(cd -P -- "${PROG_NAME%/*}" ; pwd -P)"
SHARED_NAME="$BIN_DIR/internal/shared.sh"
FLUTTER_ROOT="$(cd -P -- "$BIN_DIR/.." ; pwd -P)"
OS="$(uname -s)"
# If we're on Windows, invoke the batch script instead to get proper locking.
if [[ $OS =~ MINGW.* || $OS =~ CYGWIN.* || $OS =~ MSYS.* ]]; then
exec "${BIN_DIR}/flutter-dev.bat" "$@"
fi
# To define `shared::execute()` function
source "$SHARED_NAME"
# Run the Flutter tool directly without using the cached snapshot.
shared::execute "$@"
Loading...
Report
Report success
We will send you the feedback within 2 working days through the letter!
Please fill in the reason for the report carefully. Provide as detailed a description as possible.
Please select a report type
Cancel
Send
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

About

Cancel

Releases

No release

Contributors

All

Activities

can not load any more
Edit
About
Homepage
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ly-code/flutter.git
git@gitee.com:ly-code/flutter.git
ly-code
flutter
flutter
master
Going to Help Center

Search

Comment
Repository Report
Back to the top
Login prompt
This operation requires login to the code cloud account. Please log in before operating.
Go to login
No account. Register

AltStyle によって変換されたページ (->オリジナル) /