1. Урок 1. 00:01:51
    Course Introduction
  2. Урок 2. 00:02:02
    Course Content
  3. Урок 3. 00:03:25
    App Overview
  4. Урок 4. 00:02:43
    Making the most of this course
  5. Урок 5. 00:03:14
    What is Flutter
  6. Урок 6. 00:02:26
    The Dart Language
  7. Урок 7. 00:00:49
    Introduction to Dartpad
  8. Урок 8. 00:01:43
    A simple program
  9. Урок 9. 00:01:44
    Variable declaration and initialization
  10. Урок 10. 00:03:04
    String interpolation
  11. Урок 11. 00:03:14
    Type inference with var
  12. Урок 12. 00:01:55
    Var and final
  13. Урок 13. 00:01:54
    The dynamic keyword
  14. Урок 14. 00:04:19
    Introduction to functions
  15. Урок 15. 00:02:06
    Function return types
  16. Урок 16. 00:02:32
    Optional parameters, nullability and default values
  17. Урок 17. 00:01:59
    Named parameters
  18. Урок 18. 00:01:52
    The arrow operator
  19. Урок 19. 00:02:02
    Introduction to classes
  20. Урок 20. 00:03:06
    Class constructors
  21. Урок 21. 00:02:15
    Instance methods
  22. Урок 22. 00:02:57
    Inheritance
  23. Урок 23. 00:02:00
    The super constructor
  24. Урок 24. 00:01:49
    The base Object class and the toString method
  25. Урок 25. 00:05:26
    Overriding the toString method
  26. Урок 26. 00:03:22
    Abstract classes
  27. Урок 27. 00:02:34
    More on abstract classes
  28. Урок 28. 00:01:56
    Using abstract classes with functions
  29. Урок 29. 00:02:40
    Computed properties
  30. Урок 30. 00:04:38
    Mixins
  31. Урок 31. 00:03:44
    Introduction to lists
  32. Урок 32. 00:03:32
    Introduction to maps
  33. Урок 33. 00:04:54
    Generics and type annotations
  34. Урок 34. 00:03:52
    If and else statements
  35. Урок 35. 00:02:26
    The ternary operator
  36. Урок 36. 00:03:14
    The while loop
  37. Урок 37. 00:02:00
    The for loop
  38. Урок 38. 00:04:13
    Closures and the fold method
  39. Урок 39. 00:02:46
    Enumerations
  40. Урок 40. 00:02:50
    Switch statements
  41. Урок 41. 00:01:12
    Wrap-up
  42. Урок 42. 00:02:40
    Flutter setup on macOS
  43. Урок 43. 00:04:27
    Setting the PATH variable
  44. Урок 44. 00:00:51
    Flutter doctor
  45. Урок 45. 00:02:18
    Xcode and iOS simulator setup
  46. Урок 46. 00:05:55
    Installing Android Studio
  47. Урок 47. 00:02:21
    Installing the Android emulator
  48. Урок 48. 00:05:22
    Running Flutter from the command line
  49. Урок 49. 00:03:36
    Flutter setup on Android Studio
  50. Урок 50. 00:03:12
    Installing Visual Studio Code
  51. Урок 51. 00:01:28
    Flutter setup on Windows
  52. Урок 52. 00:02:10
    Updating the path variable
  53. Урок 53. 00:00:55
    Flutter doctor
  54. Урок 54. 00:04:28
    Installing Android Studio
  55. Урок 55. 00:03:19
    Installing the Android emulator
  56. Урок 56. 00:02:58
    Running Flutter from the command line
  57. Урок 57. 00:04:20
    Flutter setup on Android Studio
  58. Урок 58. 00:02:54
    Installing Visual Studio Code
  59. Урок 59. 00:03:29
    Creating a Flutter project with Android Studio
  60. Урок 60. 00:02:41
    A tour of the project folders
  61. Урок 61. 00:02:10
    Running the Android emulator and iOS simulator
  62. Урок 62. 00:01:09
    Overview of the Flutter counter app
  63. Урок 63. 00:04:07
    Hot reload and hot restart
  64. Урок 64. 00:02:23
    Introduction to widgets
  65. Урок 65. 00:01:52
    The MaterialApp widget
  66. Урок 66. 00:02:38
    The Scaffold widget
  67. Урок 67. 00:03:26
    The Flutter widget tree
  68. Урок 68. 00:02:44
    Stateless and stateful widgets
  69. Урок 69. 00:02:11
    Updating the counter with setState
  70. Урок 70. 00:01:11
    Wrap up
  71. Урок 71. 00:01:43
    Overview of the Time tracker app
  72. Урок 72. 00:00:55
    Switching between apps
  73. Урок 73. 00:04:08
    Writing the root widget of the app
  74. Урок 74. 00:02:51
    Adding the MaterialApp
  75. Урок 75. 00:02:20
    Adding some folders to our project
  76. Урок 76. 00:03:36
    Adding a sign-in page
  77. Урок 77. 00:02:13
    The ThemeData class
  78. Урок 78. 00:02:39
    The AppBar widget
  79. Урок 79. 00:01:28
    Preview of the SignInPage layout
  80. Урок 80. 00:03:18
    Adding a Column layout
  81. Урок 81. 00:03:56
    The CrossAxisAlignment property
  82. Урок 82. 00:04:54
    Code formatting with dartfmt
  83. Урок 83. 00:03:40
    Adding some boxes and extracting code into a method
  84. Урок 84. 00:03:26
    Private methods
  85. Урок 85. 00:04:34
    Adding some padding
  86. Урок 86. 00:01:15
    The MainAxisAlignment property
  87. Урок 87. 00:03:13
    Text, TextStyle and FontWeight
  88. Урок 88. 00:01:50
    Introduction to buttons
  89. Урок 89. 00:03:30
    Adding the first button
  90. Урок 90. 00:04:15
    Button callbacks explained
  91. Урок 91. 00:03:10
    Customising button colors
  92. Урок 92. 00:03:09
    MaterialColor explained
  93. Урок 93. 00:02:17
    Changing button shapes
  94. Урок 94. 00:01:25
    Making code reusable
  95. Урок 95. 00:06:40
    Creating a reusable custom RaisedButton
  96. Урок 96. 00:04:14
    Creating a reusable SignInButton
  97. Урок 97. 00:02:23
    Setting default values
  98. Урок 98. 00:03:56
    Making the button height configurable
  99. Урок 99. 00:04:37
    Adding the remaining buttons
  100. Урок 100. 00:01:18
    Adding logos: introduction
  101. Урок 101. 00:04:03
    Updating the pubspec.yaml file
  102. Урок 102. 00:01:54
    Image variants
  103. Урок 103. 00:03:34
    Adding an image inside a button
  104. Урок 104. 00:04:28
    Arranging widgets horizontally in a Row
  105. Урок 105. 00:02:40
    The Opacity widget
  106. Урок 106. 00:05:59
    Creating a custom SocialSignInButton
  107. Урок 107. 00:05:04
    The @required annotation
  108. Урок 108. 00:09:03
    Using assertions for better widget API design
  109. Урок 109. 00:03:57
    Local and remote authentication
  110. Урок 110. 00:01:34
    Introduction to Firebase
  111. Урок 111. 00:02:04
    Creating a Firebase project
  112. Урок 112. 00:08:59
    Configuring Firebase for Android
  113. Урок 113. 00:07:23
    Configuring Firebase for iOS
  114. Урок 114. 00:03:23
    Installing the firebase_core and firebase_auth packages
  115. Урок 115. 00:03:09
    Initializing the Firebase App
  116. Урок 116. 00:01:26
    Running on iOS and updating Cocoapods
  117. Урок 117. 00:02:01
    Futures, async and await
  118. Урок 118. 00:04:16
    Signing in anonymously with Firebase
  119. Урок 119. 00:03:07
    The FirebaseAuth singleton and private constructors
  120. Урок 120. 00:01:26
    Explaining the short-hand syntax for callbacks
  121. Урок 121. 00:02:44
    Error handling with try/catch
  122. Урок 122. 00:03:10
    Preview of the sign-in and sign-out flow
  123. Урок 123. 00:02:22
    Creating a landing page widget
  124. Урок 124. 00:01:44
    Adding a Firebase User to the LandingPage
  125. Урок 125. 00:02:55
    Adding a callback to the SignInPage
  126. Урок 126. 00:03:06
    Hooking up the onSignIn callback
  127. Урок 127. 00:04:03
    Creating the home page
  128. Урок 128. 00:02:47
    Adding the sign-out functionality
  129. Урок 129. 00:02:35
    Hooking up the onSignOut callback
  130. Урок 130. 00:02:12
    Retrieving the current user when the app starts
  131. Урок 131. 00:05:36
    Explaining global access and scoped access
  132. Урок 132. 00:02:39
    Creating the Auth class
  133. Урок 133. 00:03:04
    The abstract AuthBase class
  134. Урок 134. 00:04:37
    Using the Auth class
  135. Урок 135. 00:04:39
    Lifting state up and its drawbacks
  136. Урок 136. 00:02:31
    State Management & App Architecture
  137. Урок 137. 00:02:44
    Introduction to Streams
  138. Урок 138. 00:04:02
    Streams in practice with DartPad
  139. Урок 139. 00:04:52
    Handling errors and closing streams
  140. Урок 140. 00:02:20
    The authStateChanges stream
  141. Урок 141. 00:02:37
    Listening to the authStateChanges stream
  142. Урок 142. 00:04:34
    Adding the StreamBuilder code
  143. Урок 143. 00:03:09
    More on StreamBuilder
  144. Урок 144. 00:02:42
    Refactoring the sign-in flows
  145. Урок 145. 00:02:58
    Wrap-up on Streams and StreamBuilder
  146. Урок 146. 00:02:00
    Overview of the Firebase sign-in methods
  147. Урок 147. 00:02:30
    Enabling support for Google Sign In
  148. Урок 148. 00:05:15
    Adding Google Sign-In to the Auth class
  149. Урок 149. 00:01:35
    Hooking up Google Sign-In to our button
  150. Урок 150. 00:03:49
    Configuring Google Sign-In on iOS
  151. Урок 151. 00:02:51
    Google Sign-In flow explained
  152. Урок 152. 00:03:02
    Supporting Google Sign Out
  153. Урок 153. 00:02:57
    Testing Google Sign-In on Android
  154. Урок 154. 00:00:47
    Viewing registered users on the Firebase console
  155. Урок 155. 00:07:33
    Registering a Facebook App
  156. Урок 156. 00:02:29
    Enabling Facebook Sign-In on Firebase
  157. Урок 157. 00:01:24
    Installing the Facebook login package
  158. Урок 158. 00:01:38
    Enabling MultiDex support on Android
  159. Урок 159. 00:04:36
    Adding the Facebook Sign-In code
  160. Урок 160. 00:03:36
    Testing Facebook Sign-In on Android
  161. Урок 161. 00:04:40
    Facebook iOS setup in Xcode
  162. Урок 162. 00:02:11
    Testing Facebook Sign-In on iOS
  163. Урок 163. 00:02:57
    Accessing the user's data and privacy considerations
  164. Урок 164. 00:02:21
    Preview of the email & password sign-in page
  165. Урок 165. 00:02:00
    Creating the email & password sign-in page
  166. Урок 166. 00:01:49
    Passing the BuildContext across methods
  167. Урок 167. 00:05:21
    Introduction to navigation
  168. Урок 168. 00:02:04
    Adding a Card widget
  169. Урок 169. 00:05:18
    Adding the email and password text fields
  170. Урок 170. 00:02:22
    Adding the submit buttons
  171. Урок 171. 00:03:32
    Creating a FormSubmitButton widget
  172. Урок 172. 00:05:24
    Adding a TextEditingController
  173. Урок 173. 00:06:22
    Toggling the form type
  174. Урок 174. 00:04:15
    Adding the email & password authentication code
  175. Урок 175. 00:03:00
    Implementing the submit method
  176. Урок 176. 00:02:56
    Testing email & password sign-in
  177. Урок 177. 00:03:33
    Customising the email and password text fields
  178. Урок 178. 00:04:48
    Using FocusNode and FocusScope
  179. Урок 179. 00:05:31
    Disabling the submit button on empty email or password
  180. Урок 180. 00:02:29
    Adding a StringValidator class
  181. Урок 181. 00:02:51
    Adding an email and password validation mixin
  182. Урок 182. 00:03:17
    Showing an error text when the email or password are invalid
  183. Урок 183. 00:04:46
    Tweaking form submission
  184. Урок 184. 00:02:52
    Simulating a slow network with a delay
  185. Урок 185. 00:03:36
    Adding a loading state to our form
  186. Урок 186. 00:02:15
    Updating the email focus logic
  187. Урок 187. 00:03:37
    Fixing the vertical overflow on small screens
  188. Урок 188. 00:04:42
    Wrap-up
  189. Урок 189. 00:01:19
    Introduction to dialogs
  190. Урок 190. 00:02:50
    Showing a dialog
  191. Урок 191. 00:02:15
    Dismissing dialogs
  192. Урок 192. 00:04:03
    Platform-aware widgets on iOS, Android & more
  193. Урок 193. 00:04:48
    Adding a reusable showAlertDialog function
  194. Урок 194. 00:04:21
    Adding a sign-out confirmation dialog
  195. Урок 195. 00:02:01
    Dialog differences on Android and iOS
  196. Урок 196. 00:03:36
    Introduction to InheritedWidget
  197. Урок 197. 00:05:42
    Creating an AuthProvider
  198. Урок 198. 00:06:23
    Accessing the Auth object via the AuthProvider
  199. Урок 199. 00:01:42
    Adding the provider package
  200. Урок 200. 00:04:56
    Using the Provider class
  201. Урок 201. 00:04:09
    Wrap-up about scoped access
  202. Урок 202. 00:01:09
    Module Introduction
  203. Урок 203. 00:02:40
    Creating better user-facing errors with FirebaseAuthException
  204. Урок 204. 00:03:03
    Creating a custom exception alert dialog
  205. Урок 205. 00:03:16
    Showing error alerts in the SignInPage
  206. Урок 206. 00:01:12
    Adding a loading state: overview
  207. Урок 207. 00:02:33
    Adding a loading state to the SignInPage
  208. Урок 208. 00:03:36
    Using the loading state in the SignInPage
  209. Урок 209. 00:02:58
    The dispose method
  210. Урок 210. 00:04:50
    Introduction to state management with BLoCs
  211. Урок 211. 00:01:41
    The application layers
  212. Урок 212. 00:04:53
    BLoCs, sinks, streams, and asynchronous code
  213. Урок 213. 00:02:51
    Introduction to the SignInBloc
  214. Урок 214. 00:03:27
    Implementing a simple BLoC
  215. Урок 215. 00:02:38
    Adding a Bloc with Provider inside a static method
  216. Урок 216. 00:02:48
    Adding the StreamBuilder code
  217. Урок 217. 00:02:57
    Converting the SignInPage to a stateless widget
  218. Урок 218. 00:03:16
    The difference between Provider.of and Consumer
  219. Урок 219. 00:01:04
    Disposing BLoCs with Provider
  220. Урок 220. 00:05:48
    Adding authentication code to the SignInBloc
  221. Урок 221. 00:02:14
    Updating the SignInPage
  222. Урок 222. 00:02:56
    Fixing the BLoC submit method
  223. Урок 223. 00:01:16
    Summary on the BLoC basics
  224. Урок 224. 00:02:36
    Introduction to the email sign-in flow with BLoC
  225. Урок 225. 00:02:49
    Creating a model class for the EmailSignInForm
  226. Урок 226. 00:02:32
    Creating the EmailSignInBloc with a StreamController
  227. Урок 227. 00:06:39
    Updating the model
  228. Урок 228. 00:05:20
    Adding the BLoC submit method
  229. Урок 229. 00:05:06
    Setting up the EmailSignInFormBlocBased with Provider
  230. Урок 230. 00:07:18
    Refactoring the EmailSignInFormBlocBased widget by removing the state variables
  231. Урок 231. 00:03:36
    Moving the business logic to the BLoC class
  232. Урок 232. 00:06:32
    Moving more business logic to the model class
  233. Урок 233. 00:03:00
    The benefits of separation of concerns with BLoC
  234. Урок 234. 00:03:36
    Using stateful widgets with TextEditingControllers
  235. Урок 235. 00:02:06
    Considerations about performance
  236. Урок 236. 00:03:38
    Blocs and Services in the widget tree
  237. Урок 237. 00:02:24
    Recap on State Management
  238. Урок 238. 00:02:07
    Introduction to ValueNotifier
  239. Урок 239. 00:04:51
    Adding a ValueNotifier with ChangeNotifierProvider
  240. Урок 240. 00:03:24
    Consumer and ChangeNotifierProvider explained
  241. Урок 241. 00:02:54
    Differences between BLoC/streams and ValueNotifier/ChangeNotifierProvider
  242. Урок 242. 00:01:26
    Introduction to ChangeNotifier
  243. Урок 243. 00:04:48
    Adding the EmailSignInChangeModel class
  244. Урок 244. 00:02:43
    Completing the EmailSignInChangeModel class
  245. Урок 245. 00:05:32
    Implementing the email sign-in form with ChangeNotifier
  246. Урок 246. 00:03:23
    Comparing ValueNotifier and ChangeNotifier
  247. Урок 247. 00:03:46
    Wrap up on State Management
  248. Урок 248. 00:02:06
    Wrap up on the Authentication Flows
  249. Урок 249. 00:02:38
    Overview of the time tracker app
  250. Урок 250. 00:04:28
    Database schema and SQL vs NoSQL
  251. Урок 251. 00:02:27
    Introduction to Cloud Firestore
  252. Урок 252. 00:02:01
    Documents and Collections
  253. Урок 253. 00:03:20
    Getting started with Firestore
  254. Урок 254. 00:03:22
    Designing a Database API with CRUD operations
  255. Урок 255. 00:03:22
    Managing private user data with Cloud Firestore
  256. Урок 256. 00:01:50
    Installing Cloud Firestore
  257. Урок 257. 00:02:31
    Renaming the HomePage to JobsPage
  258. Урок 258. 00:03:02
    Adding the Database class
  259. Урок 259. 00:01:31
    Adding the Database Provider
  260. Урок 260. 00:02:18
    Adding a FloatingActionButton
  261. Урок 261. 00:06:51
    Writing data to Firestore
  262. Урок 262. 00:04:03
    Defining a strongly-typed Job model class
  263. Урок 263. 00:02:51
    Defining a common API path class
  264. Урок 264. 00:02:43
    Adding a generic setData method
  265. Урок 265. 00:04:53
    Adding security rules
  266. Урок 266. 00:02:46
    Handling Firestore permissions errors
  267. Урок 267. 00:04:57
    Reading data from Firestore
  268. Урок 268. 00:04:02
    Reading and parsing Firestore data streams
  269. Урок 269. 00:04:09
    Adding a StreamBuilder to show a list of jobs
  270. Урок 270. 00:04:52
    Debugging the StreamBuilder code
  271. Урок 271. 00:02:08
    Firestore as a realtime database
  272. Урок 272. 00:02:50
    Adding a factory constructor to our model class
  273. Урок 273. 00:03:01
    Adding a generic method to read Firestore streams
  274. Урок 274. 00:04:27
    Adding a FirestoreService class
  275. Урок 275. 00:03:15
    Wrap-up on Cloud Firestore
  276. Урок 276. 00:01:51
    Introduction to Forms with Cloud Firestore
  277. Урок 277. 00:04:24
    Adding a new job page
  278. Урок 278. 00:04:00
    The Placeholder widget
  279. Урок 279. 00:03:41
    Introduction to Form and TextFormField
  280. Урок 280. 00:08:04
    Validating and saving Form data
  281. Урок 281. 00:04:42
    Accessing the Database object with the correct BuildContext
  282. Урок 282. 00:04:54
    Saving jobs with a unique document ID
  283. Урок 283. 00:01:40
    Handling errors
  284. Урок 284. 00:03:04
    Enforcing unique job names
  285. Урок 285. 00:01:27
    Fixing the integer-parsing code
  286. Урок 286. 00:01:16
    Editing existing jobs: overview
  287. Урок 287. 00:03:51
    Adding a custom JobListTile
  288. Урок 288. 00:04:47
    Repurposing the AddJobPage for editing jobs
  289. Урок 289. 00:02:50
    Reading the documentID from Firestore
  290. Урок 290. 00:04:18
    Completing the code for editing jobs
  291. Урок 291. 00:02:47
    Wrap up on working with Forms
  292. Урок 292. 00:01:53
    Intro and multiple states of UI
  293. Урок 293. 00:03:31
    Adding an empty content widget
  294. Урок 294. 00:04:46
    Adding a reusable list items builder
  295. Урок 295. 00:04:52
    Using ListView.builder
  296. Урок 296. 00:02:50
    Using ListView.separated
  297. Урок 297. 00:02:28
    Deleting jobs from Firestore
  298. Урок 298. 00:06:30
    Adding swipe to delete support
  299. Урок 299. 00:01:51
    Working with entries: overview
  300. Урок 300. 00:04:19
    Relational data & drawbacks of NoSQL databases
  301. Урок 301. 00:01:21
    Getting ready to add new files
  302. Урок 302. 00:03:03
    Adding the source files to the project
  303. Урок 303. 00:02:14
    Connecting the new code and updating the Firestore rules
  304. Урок 304. 00:03:02
    Fixing the EditJobPage navigation
  305. Урок 305. 00:02:29
    Overview of the JobEntriesPage
  306. Урок 306. 00:05:26
    Reading and writing entries with Firestore
  307. Урок 307. 00:02:05
    The EntryListItem widget (using InkWell and Expanded)
  308. Урок 308. 00:02:31
    Formatting dates and currencies with the Intl package
  309. Урок 309. 00:02:54
    Dart as UI: Spreads and Collection-if
  310. Урок 310. 00:05:28
    Using date pickers with stateful widgets
  311. Урок 311. 00:04:07
    Date and time input with a custom UI and DateTimePicker
  312. Урок 312. 00:05:11
    Updating the UI when a Job changes
  313. Урок 313. 00:01:25
    Wrap up and CupertinoDatePicker
  314. Урок 314. 00:02:01
    Introduction to bottom navigation
  315. Урок 315. 00:01:46
    Multiple navigation stacks
  316. Урок 316. 00:03:57
    Creating a HomePage with a selected tab
  317. Урок 317. 00:06:38
    Adding a CupertinoTabScaffold
  318. Урок 318. 00:02:35
    Testing the bottom navigation
  319. Урок 319. 00:04:37
    Adding the widget builders
  320. Урок 320. 00:04:27
    Replacing the FloatingActionButtons
  321. Урок 321. 00:02:09
    Moving the logout button to the AccountPage
  322. Урок 322. 00:03:22
    Presenting modal routes with the root navigator
  323. Урок 323. 00:01:01
    The CupertinoPageRoute
  324. Урок 324. 00:05:36
    Handling the Android back button with WillPopScope and navigator keys
  325. Урок 325. 00:01:44
    Adding pop-to-root navigation
  326. Урок 326. 00:01:44
    Wrap up on multiple navigators
  327. Урок 327. 00:02:53
    Introduction to advanced stream operations
  328. Урок 328. 00:02:25
    Introduction to RxDart
  329. Урок 329. 00:03:22
    Observable.combineLatest and data transformations in the time tracker app
  330. Урок 330. 00:01:16
    Adding the source code for the new entries page
  331. Урок 331. 00:04:03
    Reviewing the UI code for the entries page
  332. Урок 332. 00:04:23
    Using combineLatest in practice
  333. Урок 333. 00:04:09
    Data manipulation in the EntriesBloc
  334. Урок 334. 00:01:41
    Wrap up on Observables
  335. Урок 335. 00:03:03
    Single subscription vs broadcast streams
  336. Урок 336. 00:01:59
    PublishSubject, ReplaySubject, BehaviorSubject
  337. Урок 337. 00:03:35
    Adding a BehaviorSubject to the EmailSignInBloc
  338. Урок 338. 00:02:28
    Wrap up and notes about local and remote state management
  339. Урок 339. 00:00:49
    Completing the time tracker app: overview
  340. Урок 340. 00:01:40
    Accessing the User object in the AccountPage
  341. Урок 341. 00:04:44
    Adding an Avatar image
  342. Урок 342. 00:03:18
    Finishing the Avatar code
  343. Урок 343. 00:00:38
    Wrapping up the time tracker app
  344. Урок 344. 00:02:07
    Introduction to writing tests
  345. Урок 345. 00:02:32
    Testing Flutter Apps
  346. Урок 346. 00:03:31
    Writing the first unit test
  347. Урок 347. 00:01:32
    Running tests
  348. Урок 348. 00:01:19
    Checking and fixing errors in tests
  349. Урок 349. 00:02:54
    Testing edge cases by writing and fixing failing tests
  350. Урок 350. 00:03:06
    Grouping tests together
  351. Урок 351. 00:03:43
    The setUp method and testing date formatting with locales
  352. Урок 352. 00:01:47
    The test lifecycle methods
  353. Урок 353. 00:03:26
    Completing the formatting tests
  354. Урок 354. 00:03:49
    Testing model classes
  355. Урок 355. 00:04:58
    hashCode and the == operator
  356. Урок 356. 00:04:55
    Adding a toString() method, wrap up on unit tests
  357. Урок 357. 00:03:38
    Introduction to widget tests
  358. Урок 358. 00:03:07
    Finding widgets and matcher arguments
  359. Урок 359. 00:02:35
    Testing widget callbacks
  360. Урок 360. 00:01:17
    Working with Acceptance Criteria
  361. Урок 361. 00:02:06
    Introduction to test mocks and mockito
  362. Урок 362. 00:04:29
    Injecting mock objects with Provider
  363. Урок 363. 00:03:33
    Verifying mock methods
  364. Урок 364. 00:06:19
    Working with keys, entering text and the pump() method
  365. Урок 365. 00:02:53
    Testing widget updates on state changes
  366. Урок 366. 00:02:17
    Completing the email sign-in tests
  367. Урок 367. 00:02:31
    Replacing Navigator.pop with a callback when the user signs in
  368. Урок 368. 00:02:13
    Updating the tests to handle the form callback
  369. Урок 369. 00:05:42
    Stubbing mock objects
  370. Урок 370. 00:02:23
    Recap on the email sign in forms and stubbing mocks
  371. Урок 371. 00:02:56
    Using widget tests with StreamBuilder
  372. Урок 372. 00:07:08
    Using StreamController inside tests
  373. Урок 373. 00:05:17
    Adding a Database builder to the Landing Page
  374. Урок 374. 00:02:46
    Test setup for the SignInPage
  375. Урок 375. 00:02:40
    Adding keys to custom widget classes
  376. Урок 376. 00:04:42
    Testing navigation
  377. Урок 377. 00:01:55
    The great thing about widget tests
  378. Урок 378. 00:07:08
    Testing ValueNotifier models
  379. Урок 379. 00:03:37
    Testing ChangeNotifier models
  380. Урок 380. 00:03:27
    Testing BloCs
  381. Урок 381. 00:01:18
    Comparing EmailSignInModel objects
  382. Урок 382. 00:08:01
    Testing streams in Blocs
  383. Урок 383. 00:01:25
    Wrap up on unit & widget tests
  384. Урок 384. 00:04:16
    Conclusion and Next Steps