Skip to content

Commit a064b8a

Browse files
rock3rmjohnsullivan
authored andcommitted
Flutter for iOS — Page contents (squashed) (cfug#993)
* Add Flutter for iOS Developers page contents * Use caret syntax for dependencies * Improve i11y section to incorporate existing APIs * Fix link in Flutter for iOS Developers * Address all comments on flutter-for-ios * Address all comments on flutter-for-android * Fix link in flutter-for-ios.md * Fix some messed up formatting in flutter-for-ios * Add Q&A on platform channels and plugins * Improve Firebase plugins section * Improve Cupertino widgets intro wording * Add form input intro Q&A * Add JSON asset example Also trim all trailing whitespaces in flutter-for-ios * Rephrase views intro question for clarity * Improve wording on Updating Widgets Q&A
1 parent 413e79b commit a064b8a

File tree

4 files changed

+1995
-13
lines changed

4 files changed

+1995
-13
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ Google Inc.
77
Faisal Abid <faisal.abid@gmail.com>
88
Iiro Krankka <iiro.krankka@gmail.com>
99
Ryuji Iwata <qt.luigi@gmail.com>
10+
Novoda Ltd. — www.novoda.com (Niamh Power, Sebastiano Poggi)

_includes/sidebar.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<li><a href="/tutorials/interactive/">Add interactivity - Tutorial</a></li>
2323
<li><a href="/web-analogs/">Flutter for Web devs</a></li>
2424
<li><a href="/flutter-for-android/">Flutter for Android devs</a></li>
25+
<li><a href="/flutter-for-ios/">Flutter for iOS devs</a></li>
2526
<li><a href="/flutter-for-react-native/">Flutter for React Native devs</a></li>
2627
<li><a href="/gestures/">Gestures</a></li>
2728
<li><a href="/animations/">Animations</a></li>

flutter-for-android.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,6 @@ JSON, or doing computationally intensive math such as crypto or signal processin
882882

883883
A full example that you can run is below.
884884

885-
<!-- skip -->
886885
{% prettify dart %}
887886
import 'dart:convert';
888887

@@ -977,7 +976,7 @@ class _SampleAppPageState extends State<SampleAppPage> {
977976
});
978977
}
979978

980-
// the entry point for the isolate
979+
// the entry point for the isolate
981980
static dataLoader(SendPort sendPort) async {
982981
// Open the ReceivePort for incoming messages.
983982
ReceivePort port = new ReceivePort();
@@ -1018,7 +1017,7 @@ You can use it by adding it to your dependencies in `pubspec.yaml`:
10181017
{% prettify yaml %}
10191018
dependencies:
10201019
...
1021-
http: '>=0.11.3+16'
1020+
http: ^0.11.3+16
10221021
{% endprettify %}
10231022

10241023
Then to make a network call, you just `await` on the `async` function `http.get()`:

0 commit comments

Comments
 (0)