|
1 | 1 | import '../models/content_model.dart';
|
2 | 2 |
|
3 | 3 | List<ContentModel> content = [
|
4 |
| - ContentModel( |
5 |
| - 'Flutter', |
6 |
| - 'Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. Fun fact - this app is made in Flutter :)', |
7 |
| - 'assets/images/flutter.png', |
8 |
| - 'flutterLogoTag', |
9 |
| - 'flutterTitleTag', |
| 4 | + const ContentModel( |
| 5 | + title: 'Flutter', |
| 6 | + description: |
| 7 | + '''Flutter is Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase. Fun fact - this app is made in Flutter :)''', |
| 8 | + logoLocation: 'assets/images/flutter.png', |
| 9 | + logoTag: 'flutterLogoTag', |
| 10 | + titleTag: 'flutterTitleTag', |
10 | 11 | ),
|
11 |
| - ContentModel( |
12 |
| - 'Angular', |
13 |
| - 'Angular is a TypeScript-based open-source web application framework led by the Angular Team at Google and by a community of individuals and corporations. Angular is a complete rewrite from the same team that built AngularJS.', |
14 |
| - 'assets/images/angular.png', |
15 |
| - 'angularLogoTag', |
16 |
| - 'angularTitleTag', |
| 12 | + const ContentModel( |
| 13 | + title: 'Angular', |
| 14 | + description: |
| 15 | + '''Angular is a TypeScript-based open-source web application framework led by the Angular Team at Google and by a community of individuals and corporations. Angular is a complete rewrite from the same team that built AngularJS.''', |
| 16 | + logoLocation: 'assets/images/angular.png', |
| 17 | + logoTag: 'angularLogoTag', |
| 18 | + titleTag: 'angularTitleTag', |
17 | 19 | ),
|
18 |
| - ContentModel( |
19 |
| - 'React', |
20 |
| - 'React is a JavaScript library for building user interfaces. It is maintained by Facebook and a community of individual developers and companies. React can be used as a base in the development of single-page or mobile applications.', |
21 |
| - 'assets/images/react.png', |
22 |
| - 'reactLogoTag', |
23 |
| - 'reactTitleTag', |
| 20 | + const ContentModel( |
| 21 | + title: 'React', |
| 22 | + description: |
| 23 | + '''React is a JavaScript library for building user interfaces. It is maintained by Facebook and a community of individual developers and companies. React can be used as a base in the development of single-page or mobile applications.''', |
| 24 | + logoLocation: 'assets/images/react.png', |
| 25 | + logoTag: 'reactLogoTag', |
| 26 | + titleTag: 'reactTitleTag', |
24 | 27 | ),
|
25 |
| - ContentModel( |
26 |
| - 'Vue', |
27 |
| - 'Vue.js is an open-source Model–view–viewmodel JavaScript framework for building user interfaces and single-page applications. It was created by Evan You, and is maintained by him and the rest of the active core team members coming from various companies such as Netlify and Netguru.', |
28 |
| - 'assets/images/vue.png', |
29 |
| - 'vueLogoTag', |
30 |
| - 'vueTitleTag', |
| 28 | + const ContentModel( |
| 29 | + title: 'Vue', |
| 30 | + description: |
| 31 | + '''Vue.js is an open-source Model–view–viewmodel JavaScript framework for building user interfaces and single-page applications. It was created by Evan You, and is maintained by him and the rest of the active core team members coming from various companies such as Netlify and Netguru.''', |
| 32 | + logoLocation: 'assets/images/vue.png', |
| 33 | + logoTag: 'vueLogoTag', |
| 34 | + titleTag: 'vueTitleTag', |
31 | 35 | ),
|
32 |
| - ContentModel( |
33 |
| - 'Swift', |
34 |
| - "Swift is a general-purpose, multi-paradigm, compiled programming language developed by Apple Inc. for iOS, iPadOS, macOS, watchOS, tvOS, Linux, and z/OS. Swift is designed to work with Apple's Cocoa and Cocoa Touch frameworks and the large body of existing Objective-C code written for Apple products.", |
35 |
| - 'assets/images/swift.png', |
36 |
| - 'swiftLogoTag', |
37 |
| - 'swiftTitleTag', |
| 36 | + const ContentModel( |
| 37 | + title: 'Swift', |
| 38 | + description: |
| 39 | + '''Swift is a general-purpose, multi-paradigm, compiled programming language developed by Apple Inc. for iOS, iPadOS, macOS, watchOS, tvOS, Linux, and z/OS. Swift is designed to work with Apple's Cocoa and Cocoa Touch frameworks and the large body of existing Objective-C code written for Apple products.''', |
| 40 | + logoLocation: 'assets/images/swift.png', |
| 41 | + logoTag: 'swiftLogoTag', |
| 42 | + titleTag: 'swiftTitleTag', |
38 | 43 | )
|
39 | 44 | ];
|
0 commit comments