This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Commit dfa4fd2 1 parent 750ad32 commit dfa4fd2 Copy full SHA for dfa4fd2
File tree 6 files changed +10
-1
lines changed
packages/flutter/lib/src/cupertino
6 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ const Color _kDefaultTabBarInactiveColor = CupertinoColors.inactiveGray;
55
55
///
56
56
/// * [CupertinoTabScaffold] , which hosts the [CupertinoTabBar] at the bottom.
57
57
/// * [BottomNavigationBarItem] , an item in a [CupertinoTabBar] .
58
+ /// * <https://developer.apple.com/design/human-interface-guidelines/ios/bars/tab-bars/>
58
59
class CupertinoTabBar extends StatelessWidget implements PreferredSizeWidget {
59
60
/// Creates a tab bar in the iOS style.
60
61
const CupertinoTabBar ({
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ enum _ContextMenuLocation {
91
91
///
92
92
/// See also:
93
93
///
94
- /// * [Apple's HIG for Context Menus] ( https://developer.apple.com/design/human-interface-guidelines/ios/controls/context-menus/)
94
+ /// * < https://developer.apple.com/design/human-interface-guidelines/ios/controls/context-menus/>
95
95
class CupertinoContextMenu extends StatefulWidget {
96
96
/// Create a context menu.
97
97
///
Original file line number Diff line number Diff line change @@ -218,6 +218,7 @@ enum _PickerColumnType {
218
218
///
219
219
/// * [CupertinoTimerPicker] , the class that implements the iOS-style timer picker.
220
220
/// * [CupertinoPicker] , the class that implements a content agnostic spinner UI.
221
+ /// * <https://developer.apple.com/design/human-interface-guidelines/ios/controls/pickers/>
221
222
class CupertinoDatePicker extends StatefulWidget {
222
223
/// Constructs an iOS style date picker.
223
224
///
@@ -1508,6 +1509,7 @@ enum CupertinoTimerPickerMode {
1508
1509
/// * [CupertinoDatePicker] , the class that implements different display modes
1509
1510
/// of the iOS-style date picker.
1510
1511
/// * [CupertinoPicker] , the class that implements a content agnostic spinner UI.
1512
+ /// * <https://developer.apple.com/design/human-interface-guidelines/ios/controls/pickers/>
1511
1513
class CupertinoTimerPicker extends StatefulWidget {
1512
1514
/// Constructs an iOS style countdown timer picker.
1513
1515
///
Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ bool _isTransitionable(BuildContext context) {
237
237
/// [CupertinoNavigationBar].
238
238
/// * [CupertinoSliverNavigationBar] for a navigation bar to be placed in a
239
239
/// scrolling list and that supports iOS-11-style large titles.
240
+ /// * <https://developer.apple.com/design/human-interface-guidelines/ios/bars/navigation-bars/>
240
241
class CupertinoNavigationBar extends StatefulWidget implements ObstructingPreferredSizeWidget {
241
242
/// Creates a navigation bar in the iOS style.
242
243
const CupertinoNavigationBar ({
@@ -573,6 +574,7 @@ class _CupertinoNavigationBarState extends State<CupertinoNavigationBar> {
573
574
/// * [CupertinoNavigationBar] , an iOS navigation bar for use on non-scrolling
574
575
/// pages.
575
576
/// * [CustomScrollView] , a ScrollView that creates custom scroll effects using slivers.
577
+ /// * <https://developer.apple.com/design/human-interface-guidelines/ios/bars/navigation-bars/>
576
578
class CupertinoSliverNavigationBar extends StatefulWidget {
577
579
/// Creates a navigation bar for scrolling lists.
578
580
///
Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ import 'text_field.dart';
39
39
/// ** See code in examples/api/lib/cupertino/search_field/cupertino_search_field.1.dart **
40
40
/// {@end-tool}
41
41
///
42
+ /// See also:
43
+ ///
44
+ /// * <https://developer.apple.com/design/human-interface-guidelines/ios/bars/search-bars/>
42
45
class CupertinoSearchTextField extends StatefulWidget {
43
46
/// Creates a [CupertinoTextField] that mimics the look and behavior of
44
47
/// UIKit's `UISearchTextField` .
Original file line number Diff line number Diff line change @@ -168,6 +168,7 @@ class _CupertinoTextFieldSelectionGestureDetectorBuilder extends TextSelectionGe
168
168
/// * [EditableText] , which is the raw text editing control at the heart of a
169
169
/// [TextField].
170
170
/// * Learn how to use a [TextEditingController] in one of our [cookbook recipes] (https://flutter.dev/docs/cookbook/forms/text-field-changes#2-use-a-texteditingcontroller).
171
+ /// * <https://developer.apple.com/design/human-interface-guidelines/ios/controls/text-fields/>
171
172
class CupertinoTextField extends StatefulWidget {
172
173
/// Creates an iOS-style text field.
173
174
///
You can’t perform that action at this time.
0 commit comments