-
Notifications
You must be signed in to change notification settings - Fork 30.8k
Expand file tree
/
Copy pathicons.dart
More file actions
9806 lines (8480 loc) · 397 KB
/
Copy pathicons.dart
File metadata and controls
9806 lines (8480 loc) · 397 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// 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.
import 'package:flutter/widgets.dart';
/// Identifiers for the supported Cupertino icons.
///
/// Use with the [Icon] class to show specific icons.
///
/// Icons are identified by their name as listed below.
///
/// To use this class, make sure you add a dependency on `cupertino_icons` in your
/// project's `pubspec.yaml` file. This ensures that the CupertinoIcons font is
/// included in your application. This font is used to display the icons. For example:
///
/// ```yaml
/// name: my_awesome_application
///
/// dependencies:
/// cupertino_icons: ^1.0.0
/// ```
///
/// {@tool snippet}
///
/// This example shows how to create a [Row] of Cupertino [Icon]s in different colors and
/// sizes. The first [Icon] uses a [Icon.semanticLabel] to announce in accessibility
/// modes like VoiceOver.
///
/// 
///
/// ```dart
/// const Row(
/// mainAxisAlignment: MainAxisAlignment.spaceAround,
/// children: <Widget>[
/// Icon(
/// CupertinoIcons.heart_fill,
/// color: Colors.pink,
/// size: 24.0,
/// semanticLabel: 'Text to announce in accessibility modes',
/// ),
/// Icon(
/// CupertinoIcons.bell_fill,
/// color: Colors.green,
/// size: 30.0,
/// ),
/// Icon(
/// CupertinoIcons.umbrella_fill,
/// color: Colors.blue,
/// size: 36.0,
/// ),
/// ],
/// )
/// ```
/// {@end-tool}
///
/// For versions 0.1.3 and below, see this [glyph map](https://raw.githubusercontent.com/flutter/packages/main/third_party/packages/cupertino_icons/map.png).
///
/// See also:
///
/// * [Icon], used to show these icons.
@staticIconProvider
abstract final class CupertinoIcons {
/// The icon font used for Cupertino icons.
static const String iconFont = 'CupertinoIcons';
/// The dependent package providing the Cupertino icons font.
static const String iconFontPackage = 'cupertino_icons';
// ===========================================================================
// BEGIN LEGACY PRE SF SYMBOLS NAMES
// We need to leave them as-is with the same codepoints for backward
// compatibility with cupertino_icons <0.1.3.
/// <i class='cupertino-icons md-36'>chevron_left</i> — Cupertino icon for a thin left chevron.
/// This is the same icon as [chevron_left] in cupertino_icons 1.0.0+.
static const IconData left_chevron = IconData(
0xf3d2,
fontFamily: iconFont,
fontPackage: iconFontPackage,
matchTextDirection: true,
);
/// <i class='cupertino-icons md-36'>chevron_right</i> — Cupertino icon for a thin right chevron.
/// This is the same icon as [chevron_right] in cupertino_icons 1.0.0+.
static const IconData right_chevron = IconData(
0xf3d3,
fontFamily: iconFont,
fontPackage: iconFontPackage,
matchTextDirection: true,
);
/// <i class='cupertino-icons md-36'>square_arrow_up</i> — Cupertino icon for an iOS style share icon with an arrow pointing up from a box. This icon is not filled in.
/// This is the same icon as [square_arrow_up] and [share_up] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [share_solid], which is similar, but filled in.
/// * [share_up], for another (pre-iOS 7) version of this icon.
static const IconData share = IconData(
0xf4ca,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>square_arrow_up_fill</i> — Cupertino icon for an iOS style share icon with an arrow pointing up from a box. This icon is filled in.
/// This is the same icon as [square_arrow_up_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [share], which is similar, but not filled in.
/// * [share_up], for another (pre-iOS 7) version of this icon.
static const IconData share_solid = IconData(
0xf4cb,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>book</i> — Cupertino icon for a book silhouette spread open. This icon is not filled in.
/// See also:
///
/// * [book_solid], which is similar, but filled in.
static const IconData book = IconData(0xf3e7, fontFamily: iconFont, fontPackage: iconFontPackage);
/// <i class='cupertino-icons md-36'>book_fill</i> — Cupertino icon for a book silhouette spread open. This icon is filled in.
/// This is the same icon as [book_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [book], which is similar, but not filled in.
static const IconData book_solid = IconData(
0xf3e8,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>bookmark</i> — Cupertino icon for a book silhouette spread open containing a bookmark in the upper right. This icon is not filled in.
///
/// See also:
///
/// * [bookmark_solid], which is similar, but filled in.
static const IconData bookmark = IconData(
0xf3e9,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>bookmark_fill</i> — Cupertino icon for a book silhouette spread open containing a bookmark in the upper right. This icon is filled in.
/// This is the same icon as [bookmark_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [bookmark], which is similar, but not filled in.
static const IconData bookmark_solid = IconData(
0xf3ea,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>info_circle</i> — Cupertino icon for a letter 'i' in a circle.
/// This is the same icon as [info_circle] in cupertino_icons 1.0.0+.
static const IconData info = IconData(0xf44c, fontFamily: iconFont, fontPackage: iconFontPackage);
/// <i class='cupertino-icons md-36'>arrowshape_turn_up_left</i> — Cupertino icon for a curved up and left pointing arrow.
/// This is the same icon as [arrowshape_turn_up_left] in cupertino_icons 1.0.0+.
///
/// For another version of this icon, see [reply_thick_solid].
static const IconData reply = IconData(
0xf4c6,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>chat_bubble</i> — Cupertino icon for a chat bubble.
/// This is the same icon as [chat_bubble] in cupertino_icons 1.0.0+.
static const IconData conversation_bubble = IconData(
0xf3fb,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>person_crop_circle</i> — Cupertino icon for a person's silhouette in a circle.
/// This is the same icon as [person_crop_circle] in cupertino_icons 1.0.0+.
static const IconData profile_circled = IconData(
0xf419,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>plus_circle</i> — Cupertino icon for a '+' sign in a circle.
/// This is the same icon as [plus_circle] in cupertino_icons 1.0.0+.
static const IconData plus_circled = IconData(
0xf48a,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>minus_circle</i> — Cupertino icon for a '-' sign in a circle.
/// This is the same icon as [minus_circle] in cupertino_icons 1.0.0+.
static const IconData minus_circled = IconData(
0xf463,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>flag</i> — Cupertino icon for a right facing flag and pole outline.
static const IconData flag = IconData(0xf42c, fontFamily: iconFont, fontPackage: iconFontPackage);
/// <i class='cupertino-icons md-36'>search</i> — Cupertino icon for a magnifier loop outline.
static const IconData search = IconData(
0xf4a5,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>checkmark</i> — Cupertino icon for a checkmark.
/// This is the same icon as [checkmark] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [check_mark_circled], which consists of this check mark and a circle surrounding it.
static const IconData check_mark = IconData(
0xf3fd,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>checkmark_circle</i> — Cupertino icon for a checkmark in a circle. The circle is not filled in.
/// This is the same icon as [checkmark_circle] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [check_mark_circled_solid], which is similar, but filled in.
/// * [check_mark], which is the check mark without a circle.
static const IconData check_mark_circled = IconData(
0xf3fe,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>checkmark_circle_fill</i> — Cupertino icon for a checkmark in a circle. The circle is filled in.
/// This is the same icon as [checkmark_circle_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [check_mark_circled], which is similar, but not filled in.
static const IconData check_mark_circled_solid = IconData(
0xf3ff,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>circle</i> — Cupertino icon for an empty circle (a ring). An un-selected radio button.
///
/// See also:
///
/// * [circle_filled], which is similar but filled in.
static const IconData circle = IconData(
0xf401,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>circle_fill</i> — Cupertino icon for a filled circle. The circle is surrounded by a ring. A selected radio button.
/// This is the same icon as [circle_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [circle], which is similar but not filled in.
static const IconData circle_filled = IconData(
0xf400,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>chevron_back</i> — Cupertino icon for a thicker left chevron used in iOS for the navigation bar back button.
/// This is the same icon as [chevron_back] in cupertino_icons 1.0.0+.
static const IconData back = IconData(
0xf3cf,
fontFamily: iconFont,
fontPackage: iconFontPackage,
matchTextDirection: true,
);
/// <i class='cupertino-icons md-36'>chevron_forward</i> — Cupertino icon for a thicker right chevron that's the reverse of [back].
/// This is the same icon as [chevron_forward] in cupertino_icons 1.0.0+.
static const IconData forward = IconData(
0xf3d1,
fontFamily: iconFont,
fontPackage: iconFontPackage,
matchTextDirection: true,
);
/// <i class='cupertino-icons md-36'>house</i> — Cupertino icon for an outline of a simple front-facing house.
/// This is the same icon as [house] in cupertino_icons 1.0.0+.
static const IconData home = IconData(0xf447, fontFamily: iconFont, fontPackage: iconFontPackage);
/// <i class='cupertino-icons md-36'>cart</i> — Cupertino icon for a right-facing shopping cart outline.
/// This is the same icon as [cart] in cupertino_icons 1.0.0+.
static const IconData shopping_cart = IconData(
0xf3f7,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>ellipsis</i> — Cupertino icon for three solid dots.
static const IconData ellipsis = IconData(
0xf46a,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>phone</i> — Cupertino icon for a phone handset outline.
static const IconData phone = IconData(
0xf4b8,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>phone_fill</i> — Cupertino icon for a phone handset.
/// This is the same icon as [phone_fill] in cupertino_icons 1.0.0+.
static const IconData phone_solid = IconData(
0xf4b9,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrow_down</i> — Cupertino icon for a solid down arrow.
/// This is the same icon as [arrow_down] in cupertino_icons 1.0.0+.
static const IconData down_arrow = IconData(
0xf35d,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrow_up</i> — Cupertino icon for a solid up arrow.
/// This is the same icon as [arrow_up] in cupertino_icons 1.0.0+.
static const IconData up_arrow = IconData(
0xf366,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>battery_100</i> — Cupertino icon for a charging battery.
/// This is the same icon as [battery_100], [battery_full] and [battery_75_percent] in cupertino_icons 1.0.0+.
static const IconData battery_charging = IconData(
0xf111,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>battery_0</i> — Cupertino icon for an empty battery.
/// This is the same icon as [battery_0] in cupertino_icons 1.0.0+.
static const IconData battery_empty = IconData(
0xf112,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>battery_100</i> — Cupertino icon for a full battery.
/// This is the same icon as [battery_100], [battery_charging] and [battery_75_percent] in cupertino_icons 1.0.0+.
static const IconData battery_full = IconData(
0xf113,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>battery_100</i> — Cupertino icon for a 75% charged battery.
/// This is the same icon as [battery_100], [battery_charging] and [battery_full] in cupertino_icons 1.0.0+.
static const IconData battery_75_percent = IconData(
0xf114,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>battery_25</i> — Cupertino icon for a 25% charged battery.
/// This is the same icon as [battery_25] in cupertino_icons 1.0.0+.
static const IconData battery_25_percent = IconData(
0xf115,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>bluetooth</i> — Cupertino icon for the Bluetooth logo.
/// This icon is available in cupertino_icons 1.0.0+ for backward
/// compatibility but not part of Apple icons' aesthetics.
static const IconData bluetooth = IconData(
0xf116,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrow_counterclockwise</i> — Cupertino icon for a restart arrow, pointing downwards.
/// This is the same icon as [arrow_counterclockwise] in cupertino_icons 1.0.0+.
static const IconData restart = IconData(
0xf21c,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrowshape_turn_up_left_2</i> — Cupertino icon for two curved up and left pointing arrows.
/// This is the same icon as [arrowshape_turn_up_left_2] in cupertino_icons 1.0.0+.
static const IconData reply_all = IconData(
0xf21d,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrowshape_turn_up_left_2_fill</i> — Cupertino icon for a curved up and left pointing arrow.
/// This is the same icon as [arrowshape_turn_up_left_2_fill] in cupertino_icons 1.0.0+.
///
/// For another version of this icon, see [reply].
static const IconData reply_thick_solid = IconData(
0xf21e,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>square_arrow_up</i> — Cupertino icon for an iOS style share icon with an arrow pointing upwards to the right from a box.
/// This is the same icon as [square_arrow_up] and [share_up] in cupertino_icons 1.0.0+.
///
/// For another version of this icon (introduced in iOS 7), see [share].
static const IconData share_up = IconData(
0xf220,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>shuffle_medium</i> — Cupertino icon for two thin right-facing intertwined arrows.
/// This is the same icon as [shuffle_medium] and [shuffle_thick] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [shuffle_medium], with slightly thicker arrows.
/// * [shuffle_thick], with thicker, bold arrows.
static const IconData shuffle = IconData(
0xf4a9,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>shuffle</i> — Cupertino icon for an two medium thickness right-facing intertwined arrows.
/// This is the same icon as [shuffle] and [shuffle_thick] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [shuffle], with thin arrows.
/// * [shuffle_thick], with thicker, bold arrows.
static const IconData shuffle_medium = IconData(
0xf4a8,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>shuffle_medium</i> — Cupertino icon for two thick right-facing intertwined arrows.
/// This is the same icon as [shuffle_medium] and [shuffle] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [shuffle], with thin arrows.
/// * [shuffle_medium], with slightly thinner arrows.
static const IconData shuffle_thick = IconData(
0xf221,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>camera</i> — Cupertino icon for a camera for still photographs. This icon is filled in.
/// This is the same icon as [camera] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [photo_camera], which is similar, but not filled in.
/// * [video_camera_solid], for the moving picture equivalent.
static const IconData photo_camera = IconData(
0xf3f5,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>camera_fill</i> — Cupertino icon for a camera for still photographs. This icon is not filled in.
/// This is the same icon as [camera_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [photo_camera_solid], which is similar, but filled in.
/// * [video_camera], for the moving picture equivalent.
static const IconData photo_camera_solid = IconData(
0xf3f6,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>videocam</i> — Cupertino icon for a camera for moving pictures. This icon is not filled in.
/// This is the same icon as [videocam] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [video_camera_solid], which is similar, but filled in.
/// * [photo_camera], for the still photograph equivalent.
static const IconData video_camera = IconData(
0xf4cc,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>videocam_fill</i> — Cupertino icon for a camera for moving pictures. This icon is filled in.
/// This is the same icon as [videocam_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [video_camera], which is similar, but not filled in.
/// * [photo_camera_solid], for the still photograph equivalent.
static const IconData video_camera_solid = IconData(
0xf4cd,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>camera_rotate</i> — Cupertino icon for a camera containing two circular arrows pointing at each other, which indicate switching. This icon is not filled in.
/// This is the same icon as [camera_rotate] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [switch_camera_solid], which is similar, but filled in.
static const IconData switch_camera = IconData(
0xf49e,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>camera_rotate_fill</i> — Cupertino icon for a camera containing two circular arrows pointing at each other, which indicate switching. This icon is filled in.
/// This is the same icon as [camera_rotate_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [switch_camera], which is similar, but not filled in.
static const IconData switch_camera_solid = IconData(
0xf49f,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>rectangle_stack</i> — Cupertino icon for a collection of folders, which store collections of files, i.e. an album. This icon is not filled in.
/// This is the same icon as [rectangle_stack] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [collections_solid], which is similar, but filled in.
static const IconData collections = IconData(
0xf3c9,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>rectangle_stack_fill</i> — Cupertino icon for a collection of folders, which store collections of files, i.e. an album. This icon is filled in.
/// This is the same icon as [rectangle_stack_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [collections], which is similar, but not filled in.
static const IconData collections_solid = IconData(
0xf3ca,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>folder_open</i> — Cupertino icon for a single folder, which stores multiple files. This icon is not filled in.
/// This is the same icon as [folder_open] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [folder_solid], which is similar, but filled in.
/// * [folder_open], which is the pre-iOS 7 version of this icon.
static const IconData folder = IconData(
0xf434,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>folder_fill</i> — Cupertino icon for a single folder, which stores multiple files. This icon is filled in.
/// This is the same icon as [folder_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [folder], which is similar, but not filled in.
/// * [folder_open], which is the pre-iOS 7 version of this icon and not filled in.
static const IconData folder_solid = IconData(
0xf435,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>folder</i> — Cupertino icon for a single folder that indicates being opened. A folder like this typically stores multiple files.
/// This is the same icon as [folder] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [folder], which is the equivalent of this icon for iOS versions later than or equal to iOS 7.
static const IconData folder_open = IconData(
0xf38a,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>trash</i> — Cupertino icon for a trash bin for removing items. This icon is not filled in.
/// This is the same icon as [trash] and [delete_simple] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [delete_solid], which is similar, but filled in.
static const IconData delete = IconData(
0xf4c4,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>trash_fill</i> — Cupertino icon for a trash bin for removing items. This icon is filled in.
/// This is the same icon as [trash_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [delete], which is similar, but not filled in.
static const IconData delete_solid = IconData(
0xf4c5,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>trash</i> — Cupertino icon for a trash bin with minimal detail for removing items.
/// This is the same icon as [trash] and [delete] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [delete], which is the iOS 7 equivalent of this icon with richer detail.
static const IconData delete_simple = IconData(
0xf37f,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>pen</i> — Cupertino icon for a simple pen.
///
/// See also:
///
/// * [pencil], which is similar, but has less detail and looks like a pencil.
static const IconData pen = IconData(0xf2bf, fontFamily: iconFont, fontPackage: iconFontPackage);
/// <i class='cupertino-icons md-36'>pencil</i> — Cupertino icon for a simple pencil.
///
/// See also:
///
/// * [pen], which is similar, but has more detail and looks like a pen.
static const IconData pencil = IconData(
0xf37e,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>square_pencil</i> — Cupertino icon for a box for writing and a pen on top (that indicates the writing). This icon is not filled in.
/// This is the same icon as [square_pencil] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [create_solid], which is similar, but filled in.
/// * [pencil], which is just a pencil.
/// * [pen], which is just a pen.
static const IconData create = IconData(
0xf417,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>square_pencil_fill</i> — Cupertino icon for a box for writing and a pen on top (that indicates the writing). This icon is filled in.
/// This is the same icon as [square_pencil_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [create], which is similar, but not filled in.
/// * [pencil], which is just a pencil.
/// * [pen], which is just a pen.
static const IconData create_solid = IconData(
0xf417,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrow_clockwise</i> — Cupertino icon for an arrow on a circular path with its end pointing at its start.
/// This is the same icon as [arrow_clockwise], [refresh_thin] and [refresh_thick] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [refresh_circled], which is this icon put in a circle.
/// * [refresh_thin], which is an arrow of the same concept, but thinner and with a smaller gap in between its end and start.
/// * [refresh_thick], which is similar, but rotated 45 degrees clockwise and thicker.
/// * [refresh_bold], which is similar, but rotated 90 degrees clockwise and much thicker.
static const IconData refresh = IconData(
0xf49a,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrow_clockwise_circle</i> — Cupertino icon for an arrow on a circular path with its end pointing at its start surrounded by a circle. This is icon is not filled in.
/// This is the same icon as [arrow_clockwise_circle] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [refresh_circled_solid], which is similar, but filled in.
/// * [refresh], which is the arrow of this icon without a circle.
static const IconData refresh_circled = IconData(
0xf49b,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrow_clockwise_circle_fill</i> — Cupertino icon for an arrow on a circular path with its end pointing at its start surrounded by a circle. This is icon is filled in.
/// This is the same icon as [arrow_clockwise_circle_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [refresh_circled], which is similar, but not filled in.
/// * [refresh], which is the arrow of this icon filled in without a circle.
static const IconData refresh_circled_solid = IconData(
0xf49c,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrow_clockwise</i> — Cupertino icon for an arrow on a circular path with its end pointing at its start.
/// This is the same icon as [arrow_clockwise], [refresh] and [refresh_thick] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [refresh], which is an arrow of the same concept, but thicker and with a larger gap in between its end and start.
static const IconData refresh_thin = IconData(
0xf49d,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrow_clockwise</i> — Cupertino icon for an arrow on a circular path with its end pointing at its start.
/// This is the same icon as [arrow_clockwise], [refresh_thin] and [refresh] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [refresh], which is similar, but rotated 45 degrees anti-clockwise and thinner.
/// * [refresh_bold], which is similar, but rotated 45 degrees clockwise and thicker.
static const IconData refresh_thick = IconData(
0xf3a8,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>arrow_counterclockwise</i> — Cupertino icon for an arrow on a circular path with its end pointing at its start.
/// This is the same icon as [arrow_counterclockwise] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [refresh_thick], which is similar, but rotated 45 degrees anti-clockwise and thinner.
/// * [refresh], which is similar, but rotated 90 degrees anti-clockwise and much thinner.
static const IconData refresh_bold = IconData(
0xf21c,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>xmark</i> — Cupertino icon for a cross of two diagonal lines from edge to edge crossing in an angle of 90 degrees, which is used for dismissal.
/// This is the same icon as [xmark] and [clear] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [clear_circled], which uses this cross as a blank space in a filled out circled.
/// * [clear], which uses a thinner cross and is the iOS 7 equivalent of this icon.
static const IconData clear_thick = IconData(
0xf2d7,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>xmark_circle_fill</i> — Cupertino icon for a cross of two diagonal lines from edge to edge crossing in an angle of 90 degrees, which is used for dismissal, used as a blank space in a circle.
/// This is the same icon as [xmark_circle_fill] and [clear_circled_solid] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [clear], which is equivalent to the cross of this icon without a circle.
/// * [clear_circled_solid], which is similar, but uses a thinner cross.
static const IconData clear_thick_circled = IconData(
0xf36e,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>xmark</i> — Cupertino icon for a cross of two diagonal lines from edge to edge crossing in an angle of 90 degrees, which is used for dismissal.
/// This is the same icon as [xmark] and [clear_thick] in cupertino_icons 1.0.0+.
///
///
/// See also:
///
/// * [clear_circled], which consists of this cross and a circle surrounding it.
/// * [clear], which uses a thicker cross and is the pre-iOS 7 equivalent of this icon.
static const IconData clear = IconData(
0xf404,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>xmark_circle</i> — Cupertino icon for a cross of two diagonal lines from edge to edge crossing in an angle of 90 degrees, which is used for dismissal, surrounded by circle. This icon is not filled in.
/// This is the same icon as [xmark_circle] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [clear_circled_solid], which is similar, but filled in.
/// * [clear], which is the standalone cross of this icon.
static const IconData clear_circled = IconData(
0xf405,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>xmark_circle_fill</i> — Cupertino icon for a cross of two diagonal lines from edge to edge crossing in an angle of 90 degrees, which is used for dismissal, used as a blank space in a circle. This icon is filled in.
/// This is the same icon as [xmark_circle_fill] and [clear_thick_circled] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [clear_circled], which is similar, but not filled in.
static const IconData clear_circled_solid = IconData(
0xf406,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>plus</i> — Cupertino icon for an two straight lines, one horizontal and one vertical, meeting in the middle, which is the equivalent of a plus sign.
/// This is the same icon as [plus] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [plus_circled], which is the pre-iOS 7 version of this icon with a thicker cross.
/// * [add_circled], which consists of the plus and a circle around it.
static const IconData add = IconData(0xf489, fontFamily: iconFont, fontPackage: iconFontPackage);
/// <i class='cupertino-icons md-36'>plus_circle</i> — Cupertino icon for an two straight lines, one horizontal and one vertical, meeting in the middle, which is the equivalent of a plus sign, surrounded by a circle. This icon is not filled in.
/// This is the same icon as [plus_circle] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [plus_circled], which is the pre-iOS 7 version of this icon with a thicker cross and a filled in circle.
/// * [add_circled_solid], which is similar, but filled in.
static const IconData add_circled = IconData(
0xf48a,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>plus_circle_fill</i> — Cupertino icon for an two straight lines, one horizontal and one vertical, meeting in the middle, which is the equivalent of a plus sign, surrounded by a circle. This icon is not filled in.
/// This is the same icon as [plus_circle_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [plus_circled], which is the pre-iOS 7 version of this icon with a thicker cross.
/// * [add_circled], which is similar, but not filled in.
static const IconData add_circled_solid = IconData(
0xf48b,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>gear_alt</i> — Cupertino icon for a gear with eight cogs. This icon is not filled in.
/// This is the same icon as [gear_alt] and [gear_big] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [gear_solid], which is similar, but filled in.
/// * [gear_big], which is the pre-iOS 7 version of this icon and appears bigger because of fewer and bigger cogs.
/// * [settings], which is another cogwheel with a different design.
static const IconData gear = IconData(0xf43c, fontFamily: iconFont, fontPackage: iconFontPackage);
/// <i class='cupertino-icons md-36'>gear_alt_fill</i> — Cupertino icon for a gear with eight cogs. This icon is filled in.
/// This is the same icon as [gear_alt_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [gear], which is similar, but not filled in.
/// * [settings_solid], which is another cogwheel with a different design.
static const IconData gear_solid = IconData(
0xf43d,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>gear_alt</i> — Cupertino icon for a gear with six cogs.
/// This is the same icon as [gear_alt] and [gear] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [gear], which is the iOS 7 version of this icon and appears smaller because of more and larger cogs.
/// * [settings_solid], which is another cogwheel with a different design.
static const IconData gear_big = IconData(
0xf2f7,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>settings</i> — Cupertino icon for a cogwheel with many cogs and decoration in the middle. This icon is not filled in.
///
/// See also:
///
/// * [settings_solid], which is similar, but filled in.
/// * [gear], which is another cogwheel with a different design.
static const IconData settings = IconData(
0xf411,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>settings_solid</i> — Cupertino icon for a cogwheel with many cogs and decoration in the middle. This icon is filled in.
///
/// See also:
///
/// * [settings], which is similar, but not filled in.
/// * [gear_solid], which is another cogwheel with a different design.
static const IconData settings_solid = IconData(
0xf412,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>music_note</i> — Cupertino icon for a symbol representing a solid single musical note.
///
/// See also:
///
/// * [double_music_note], which is similar, but with 2 connected notes.
static const IconData music_note = IconData(
0xf46b,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>music_note_2</i> — Cupertino icon for a symbol representing 2 connected musical notes.
/// This is the same icon as [music_note_2] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [music_note], which is similar, but with a single note.
static const IconData double_music_note = IconData(
0xf46c,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>play</i> — Cupertino icon for a triangle facing to the right. This icon is not filled in.
/// This is the same icon as [play] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [play_arrow_solid], which is similar, but filled in.
static const IconData play_arrow = IconData(
0xf487,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>play_fill</i> — Cupertino icon for a triangle facing to the right. This icon is filled in.
/// This is the same icon as [play_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [play_arrow], which is similar, but not filled in.
static const IconData play_arrow_solid = IconData(
0xf488,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>pause</i> — Cupertino icon for an two vertical rectangles. This icon is not filled in.
///
/// See also:
///
/// * [pause_solid], which is similar, but filled in.
static const IconData pause = IconData(
0xf477,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>pause_fill</i> — Cupertino icon for an two vertical rectangles. This icon is filled in.
/// This is the same icon as [pause_fill] in cupertino_icons 1.0.0+.
///
/// See also:
///
/// * [pause], which is similar, but not filled in.
static const IconData pause_solid = IconData(
0xf478,
fontFamily: iconFont,
fontPackage: iconFontPackage,
);
/// <i class='cupertino-icons md-36'>infinite</i> — Cupertino icon for the infinity symbol.
/// This is the same icon as [infinite] and [loop_thick] in cupertino_icons 1.0.0+.
///
/// See also: