From e728b6366fc3c4a07102e8d22385d580737cfedb Mon Sep 17 00:00:00 2001 From: Libery Date: Thu, 23 Aug 2018 17:24:00 +0800 Subject: [PATCH 1/4] fix fileName --- platform-channels.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-channels.md b/platform-channels.md index c6eac60..8e1842b 100644 --- a/platform-channels.md +++ b/platform-channels.md @@ -357,7 +357,7 @@ import android.os.Build.VERSION_CODES 1. 选择 'File > Open...' -1. 定位到您 Flutter app目录, 然后选择里面的 `android`文件夹,点击 OK +1. 定位到您 Flutter app目录, 然后选择里面的 `iOS`文件夹,点击 OK 1. 确保Xcode项目的构建没有错误。 From 313a2df0a485c6dc6f2a401a3056724845477f29 Mon Sep 17 00:00:00 2001 From: Coink <522596979@qq.com> Date: Wed, 5 Sep 2018 20:50:48 +0800 Subject: [PATCH 2/4] =?UTF-8?q?=E4=BD=BF=E7=94=A8=E5=8D=8A=E8=A7=92?= =?UTF-8?q?=E7=AC=A6=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _includes/setup/path-mac-linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/setup/path-mac-linux.md b/_includes/setup/path-mac-linux.md index 39ccda2..cf6198a 100644 --- a/_includes/setup/path-mac-linux.md +++ b/_includes/setup/path-mac-linux.md @@ -26,7 +26,7 @@ export PATH= PATH_TO_FLUTTER_GIT_DIRECTORY/flutter/bin:$PATH 4. 运行 `source $HOME/.bash_profile` 刷新当前终端窗口. {% include note.html content="如果你使用的是zsh,终端启动时 -`~/.bash_profile` 将不会被加载,解决办法就是修改 `~/.zshrc` ,在其中添加:source ~/.bash_profile" +`~/.bash_profile` 将不会被加载,解决办法就是修改 `~/.zshrc` ,在其中添加:source ~/.bash_profile" %} 5.通过运行`flutter/bin`命令验证目录是否在已经在PATH中: From 78f7a337dca1886cf4694e38e99516a56528f479 Mon Sep 17 00:00:00 2001 From: kunkun Date: Fri, 7 Sep 2018 19:05:57 +0800 Subject: [PATCH 3/4] Update flutter-for-react-native.md --- flutter-for-react-native.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flutter-for-react-native.md b/flutter-for-react-native.md index 77be518..37c7dbb 100644 --- a/flutter-for-react-native.md +++ b/flutter-for-react-native.md @@ -397,11 +397,11 @@ void main() { ### 如何使用组件并将其嵌套以形成组件树? -在Flutter中,几乎所有东西都是Weights。 +在Flutter中,几乎所有东西都是widget。 -Weights是应用程序用户界面的基本构建块,您将组件组成一个层次结构,调用组件树。每个窗口Weights都嵌套在父窗口Weights中,并从其父窗口继承属性。甚至应用程序对象本身也是一个组件,没有单独的“应用程序”对象。相反,根组件担任此角色。 +widget是应用程序用户界面的基本构建块,您将组件组成一个层次结构,调用组件树。每个窗口widget都嵌套在父窗口widget中,并从其父窗口继承属性。甚至应用程序对象本身也是一个组件,没有单独的“应用程序”对象。相反,根组件担任此角色。 -Weight可以定义: +Widget可以定义: * 结构元素 - 如按钮或菜单 * 风格元素 - 像字体或颜色主题 From c07bee620950639af564daf70a896a7b742950f9 Mon Sep 17 00:00:00 2001 From: Huang YunKun Date: Sun, 23 Sep 2018 11:41:24 +0800 Subject: [PATCH 4/4] Update platform-channels.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修正错别字“天骄”,修正文件夹表述错误 --- platform-channels.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platform-channels.md b/platform-channels.md index c6eac60..4d8e307 100644 --- a/platform-channels.md +++ b/platform-channels.md @@ -357,7 +357,7 @@ import android.os.Build.VERSION_CODES 1. 选择 'File > Open...' -1. 定位到您 Flutter app目录, 然后选择里面的 `android`文件夹,点击 OK +1. 定位到您 Flutter app目录, 然后选择里面的 `ios`文件夹,点击 OK 1. 确保Xcode项目的构建没有错误。 @@ -437,7 +437,7 @@ import android.os.Build.VERSION_CODES 1. 选择 'File > Open...' -1. 定位到您 Flutter app目录, 然后选择里面的 `android`文件夹,点击 OK +1. 定位到您 Flutter app目录, 然后选择里面的 `ios`文件夹,点击 OK 1. 确保Xcode项目的构建没有错误。 @@ -468,7 +468,7 @@ import android.os.Build.VERSION_CODES 接下来,我们添加Swift代码,使用iOS电池API来获取电池电量。此代码与您在本机iOS应用程序中编写的代码完全相同。 -将以下新方法天骄到`AppDelegate.swift`底部 +将以下新方法添加到`AppDelegate.swift`底部 ```swift private func receiveBatteryLevel(result: FlutterResult) {