Last active
December 7, 2018 04:22
-
-
Save shubie/869a129e9e2cc799358083edc8af7f1c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| List getLessons() { | |
| return [ | |
| Lesson( | |
| title: "Introduction to Driving", | |
| level: "Beginner", | |
| indicatorValue: 0.33, | |
| price: 20, | |
| content: | |
| "Start by taking a couple of minutes to read the info in this section. Launch your app and click on the Settings menu. While on the settings page, click the Save button. You should see a circular progress indicator display in the middle of the page and the user interface elements cannot be clicked due to the modal barrier that is constructed."), | |
| Lesson( | |
| title: "Observation at Junctions", | |
| level: "Beginner", | |
| indicatorValue: 0.33, | |
| price: 50, | |
| content: | |
| "Start by taking a couple of minutes to read the info in this section. Launch your app and click on the Settings menu. While on the settings page, click the Save button. You should see a circular progress indicator display in the middle of the page and the user interface elements cannot be clicked due to the modal barrier that is constructed."), | |
| Lesson( | |
| title: "Reverse parallel Parking", | |
| level: "Intermidiate", | |
| indicatorValue: 0.66, | |
| price: 30, | |
| content: | |
| "Start by taking a couple of minutes to read the info in this section. Launch your app and click on the Settings menu. While on the settings page, click the Save button. You should see a circular progress indicator display in the middle of the page and the user interface elements cannot be clicked due to the modal barrier that is constructed."), | |
| Lesson( | |
| title: "Reversing around the corner", | |
| level: "Intermidiate", | |
| indicatorValue: 0.66, | |
| price: 30, | |
| content: | |
| "Start by taking a couple of minutes to read the info in this section. Launch your app and click on the Settings menu. While on the settings page, click the Save button. You should see a circular progress indicator display in the middle of the page and the user interface elements cannot be clicked due to the modal barrier that is constructed."), | |
| Lesson( | |
| title: "Incorrect Use of Signal", | |
| level: "Advanced", | |
| indicatorValue: 1.0, | |
| price: 50, | |
| content: | |
| "Start by taking a couple of minutes to read the info in this section. Launch your app and click on the Settings menu. While on the settings page, click the Save button. You should see a circular progress indicator display in the middle of the page and the user interface elements cannot be clicked due to the modal barrier that is constructed."), | |
| Lesson( | |
| title: "Engine Challenges", | |
| level: "Advanced", | |
| indicatorValue: 1.0, | |
| price: 50, | |
| content: | |
| "Start by taking a couple of minutes to read the info in this section. Launch your app and click on the Settings menu. While on the settings page, click the Save button. You should see a circular progress indicator display in the middle of the page and the user interface elements cannot be clicked due to the modal barrier that is constructed."), | |
| Lesson( | |
| title: "Self Driving Car", | |
| level: "Advanced", | |
| indicatorValue: 1.0, | |
| price: 50, | |
| content: | |
| "Start by taking a couple of minutes to read the info in this section. Launch your app and click on the Settings menu. While on the settings page, click the Save button. You should see a circular progress indicator display in the middle of the page and the user interface elements cannot be clicked due to the modal barrier that is constructed. ") | |
| ]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment