Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Dart: The Complete Developer's Guide, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:14
    Dart: The Complete Developer's Guide
  2. Урок 2. 00:03:35
    Making the most of this course
  3. Урок 3. 00:04:14
    Introduction to Dart
  4. Урок 4. 00:02:06
    Introduction to Dartpad
  5. Урок 5. 00:00:56
    Section Intro
  6. Урок 6. 00:01:22
    The 'main' method
  7. Урок 7. 00:01:56
    Hello world
  8. Урок 8. 00:03:25
    Variable declaration and initialization
  9. Урок 9. 00:02:48
    Basic types
  10. Урок 10. 00:01:14
    Exercise: printing variables
  11. Урок 11. 00:05:07
    String Concatenation & Interpolation
  12. Урок 12. 00:01:47
    Exercise: String interpolation
  13. Урок 13. 00:04:01
    String Escaping
  14. Урок 14. 00:01:35
    Multi-line strings
  15. Урок 15. 00:03:34
    Basic String operations: uppercase and lowercase
  16. Урок 16. 00:01:56
    Initialization vs Assignment
  17. Урок 17. 00:00:59
    Exercise: Lowercase and uppercase strings
  18. Урок 18. 00:04:25
    Finding and replacing strings
  19. Урок 19. 00:04:30
    Conversations between types
  20. Урок 20. 00:03:32
    Arithmetic operators
  21. Урок 21. 00:02:26
    Exercise: temperature conversion
  22. Урок 22. 00:03:17
    Increment & decrement operators
  23. Урок 23. 00:03:35
    Logical & Relational operators
  24. Урок 24. 00:02:25
    Ternary conditional operator
  25. Урок 25. 00:04:18
    Hex format, bitwise & shifting operators
  26. Урок 26. 00:04:13
    Comments
  27. Урок 27. 00:01:56
    Expressions & statements
  28. Урок 28. 00:00:50
    Section Intro
  29. Урок 29. 00:03:42
    Static vs Dynamic Languages
  30. Урок 30. 00:01:12
    Type inference with 'var'
  31. Урок 31. 00:02:27
    The 'final' keyword
  32. Урок 32. 00:02:21
    The 'const' keyword
  33. Урок 33. 00:02:32
    Exercise: 'var', 'final' and 'const'
  34. Урок 34. 00:02:18
    The 'dynamic' keyword
  35. Урок 35. 00:00:38
    Section Intro
  36. Урок 36. 00:03:32
    If/else statements
  37. Урок 37. 00:02:44
    Exercise: if/else statements
  38. Урок 38. 00:02:56
    while loops
  39. Урок 39. 00:02:49
    for loops
  40. Урок 40. 00:03:21
    Exercise: fizz buzz
  41. Урок 41. 00:03:51
    'break' and 'continue'
  42. Урок 42. 00:03:38
    switch statements
  43. Урок 43. 00:04:11
    enumerations
  44. Урок 44. 00:02:37
    Exercise: simple calculator
  45. Урок 45. 00:01:49
    Section Intro
  46. Урок 46. 00:06:55
    Installing the Dart SDK
  47. Урок 47. 00:04:07
    Installing and configuring VS Code
  48. Урок 48. 00:02:11
    Project Brief: Rock, Paper & Scissors
  49. Урок 49. 00:02:00
    Creating a command line app
  50. Урок 50. 00:01:51
    Pseudocode for the game logic
  51. Урок 51. 00:04:04
    Getting use input with stdin from dart:io
  52. Урок 52. 00:02:44
    Implementing the game loop
  53. Урок 53. 00:08:56
    Implementing the game logic
  54. Урок 54. 00:00:49
    Section Intro
  55. Урок 55. 00:04:02
    Lists
  56. Урок 56. 00:01:03
    Exercise: Sum of the items in a list
  57. Урок 57. 00:03:37
    List methods
  58. Урок 58. 00:01:54
    Type annotations with lists
  59. Урок 59. 00:02:27
    Using 'var', 'final', 'const' with lists
  60. Урок 60. 00:03:48
    Sets
  61. Урок 61. 00:02:10
    Exercise: Sets
  62. Урок 62. 00:04:57
    Maps
  63. Урок 63. 00:01:33
    The 'as' operator
  64. Урок 64. 00:01:25
    The 'null' value
  65. Урок 65. 00:02:57
    Iterating on maps
  66. Урок 66. 00:02:27
    Exercise: Pizza Ordering
  67. Урок 67. 00:01:41
    Nested Collections
  68. Урок 68. 00:01:49
    Exercise: Restaurant ratings
  69. Урок 69. 00:02:49
    Collection-if
  70. Урок 70. 00:01:34
    Collection-for
  71. Урок 71. 00:03:05
    Spreads
  72. Урок 72. 00:02:14
    Exercise: Shopping List
  73. Урок 73. 00:04:55
    Copying collections
  74. Урок 74. 00:02:30
    Section Intro
  75. Урок 75. 00:03:23
    Parsing command line arguments
  76. Урок 76. 00:03:32
    Reading files line by line
  77. Урок 77. 00:02:26
    Pseudocode for the processing logic
  78. Урок 78. 00:06:14
    Implementing the processing logic
  79. Урок 79. 00:02:28
    Introduction to Null Safety
  80. Урок 80. 00:02:57
    Nullable and non-nullable variables
  81. Урок 81. 00:03:29
    Flow Analysis: Promotion and Definite Assignment
  82. Урок 82. 00:02:09
    The assertion operator
  83. Урок 83. 00:02:29
    The if-null operator
  84. Урок 84. 00:01:26
    Null Safety with type inference
  85. Урок 85. 00:02:24
    Null Safety with collections
  86. Урок 86. 00:03:18
    The conditional access operator & the billion dollar mistake
  87. Урок 87. 00:00:59
    Section Intro
  88. Урок 88. 00:01:31
    Intro to functions
  89. Урок 89. 00:04:31
    Function arguments
  90. Урок 90. 00:02:00
    Return values
  91. Урок 91. 00:02:26
    Exercise: Sum of a list of numbers
  92. Урок 92. 00:02:36
    Named and positional arguments
  93. Урок 93. 00:05:03
    Required and default values
  94. Урок 94. 00:02:17
    Default positional arguments
  95. Урок 95. 00:02:37
    Exercise: Pizza ordering with functions
  96. Урок 96. 00:01:30
    Fat arrow notations
  97. Урок 97. 00:02:23
    The global and local scope
  98. Урок 98. 00:02:01
    Inner Functions
  99. Урок 99. 00:04:06
    Global mutable state and functions with side effects
  100. Урок 100. 00:00:44
    Section Intro
  101. Урок 101. 00:02:52
    Anonymous functions
  102. Урок 102. 00:02:46
    Functions as first class objects
  103. Урок 103. 00:03:38
    Function types
  104. Урок 104. 00:02:11
    Closures
  105. Урок 105. 00:03:45
    The 'forEach' method
  106. Урок 106. 00:01:37
    The 'map' method
  107. Урок 107. 00:02:38
    'Iterable' and 'toList()'
  108. Урок 108. 00:07:50
    Code reuse with anonymous functions and generics
  109. Урок 109. 00:03:11
    The 'where' and 'firstWhere' methods
  110. Урок 110. 00:02:44
    Exercise: Implement the 'where' function
  111. Урок 111. 00:03:36
    Ecercise: Implement the 'firstWhere' function
  112. Урок 112. 00:02:47
    The 'reduce' method
  113. Урок 113. 00:06:02
    Combining functional operators
  114. Урок 114. 00:00:43
    Section Intro
  115. Урок 115. 00:03:53
    Introduction to classes
  116. Урок 116. 00:03:33
    Instance methods
  117. Урок 117. 00:02:00
    Class constructors and the 'this' keyword
  118. Урок 118. 00:04:47
    Initializer lists and the shorthand syntax
  119. Урок 119. 00:01:52
    Classes with immutable members
  120. Урок 120. 00:02:59
    Exercise: Creating a 'Person' class
  121. Урок 121. 00:02:02
    Type safety with classes
  122. Урок 122. 00:02:36
    'const' constructors
  123. Урок 123. 00:03:50
    Named constructors
  124. Урок 124. 00:02:52
    Named constructors: temperature example
  125. Урок 125. 00:03:06
    Getters and setters
  126. Урок 126. 00:02:59
    Exercise: Restaurant ratings with classes
  127. Урок 127. 00:03:15
    Static methods and variables
  128. Урок 128. 00:05:29
    Private variables and methods
  129. Урок 129. 00:01:14
    Wrap up
  130. Урок 130. 00:01:25
    Section Intro
  131. Урок 131. 00:07:31
    VS Code Dart Setup with Null Safety
  132. Урок 132. 00:04:18
    Introduction to inheritance/subclassing
  133. Урок 133. 00:03:44
    The 'super' constructor
  134. Урок 134. 00:03:08
    Overriding methods
  135. Урок 135. 00:06:31
    Abstract classes
  136. Урок 136. 00:02:37
    Exercise: Area and Perimeter
  137. Урок 137. 00:05:32
    Interfaces and the difference between 'implements' and 'extends'
  138. Урок 138. 00:02:01
    The base 'Object' class
  139. Урок 139. 00:02:52
    The 'toString()' method
  140. Урок 140. 00:04:23
    The equality operator and the 'covariant' keyword
  141. Урок 141. 00:01:50
    Exercise: Implement the + and * operators
  142. Урок 142. 00:05:44
    Overriding 'hashCode' and the Equatable package
  143. Урок 143. 00:03:17
    Using classes with generics
  144. Урок 144. 00:03:50
    Composition vs inheritance: Flutter widget hierarchy example
  145. Урок 145. 00:10:22
    Factory constructors and reading JSON data
  146. Урок 146. 00:03:04
    Exercise: JSON Serialization
  147. Урок 147. 00:03:58
    Copying objects with 'copyWiith'
  148. Урок 148. 00:04:16
    The cascade operator
  149. Урок 149. 00:03:05
    Simple eCommerce store: Overview
  150. Урок 150. 00:02:28
    Creating the Product, Item, Cart classes
  151. Урок 151. 00:07:08
    Adding the interactive prompt
  152. Урок 152. 00:05:54
    Adding items to the cart
  153. Урок 153. 00:04:24
    Checkout functionality
  154. Урок 154. 00:03:30
    Project structure and wrap-up
  155. Урок 155. 00:01:28
    Section Intro
  156. Урок 156. 00:04:43
    Creating and using mixins
  157. Урок 157. 00:02:36
    Mixins: Drawbacks
  158. Урок 158. 00:03:00
    Extensions
  159. Урок 159. 00:04:11
    Extensions with generic type constraints
  160. Урок 160. 00:02:21
    Exercise: Range extension
  161. Урок 161. 00:01:16
    Section Intr
  162. Урок 162. 00:01:36
    Errors vs Exceptions
  163. Урок 163. 00:05:30
    Assertions
  164. Урок 164. 00:07:46
    Exceptions: 'throw', 'try', 'catch', 'finally', 'rethrow'
  165. Урок 165. 00:03:24
    Exercise: Email validation
  166. Урок 166. 00:01:45
    Section Intro
  167. Урок 167. 00:05:05
    Futures, 'then', 'catchError', 'whenComplete'
  168. Урок 168. 00:04:13
    'async' and 'await'
  169. Урок 169. 00:02:37
    'Future.value' and 'Future.error'
  170. Урок 170. 00:03:11
    Exercise: Countdown with Futures
  171. Урок 171. 00:04:45
    Streams
  172. Урок 172. 00:03:52
    Stream generators: 'async*' and 'yield'
  173. Урок 173. 00:02:16
    Exercise: fizz-buzz with streams
  174. Урок 174. 00:02:07
    Stream constructors
  175. Урок 175. 00:03:41
    Stream methods
  176. Урок 176. 00:01:46
    Single/multiple subscription streams
  177. Урок 177. 00:01:50
    Weather App Overview
  178. Урок 178. 00:02:36
    REST API Basics
  179. Урок 179. 00:01:33
    Creating the command-line app
  180. Урок 180. 00:05:49
    Creating a Weather API Client with the Dart http package
  181. Урок 181. 00:03:51
    Reading the response status code and data
  182. Урок 182. 00:04:15
    Completing the Weather API Client
  183. Урок 183. 00:06:38
    Parsing JSON Data
  184. Урок 184. 00:07:31
    Error Handling and Wrap up
  185. Урок 185. 00:01:05
    Free Dart / Flutter eBook ($40 value) & Next Steps