Files
Motula-Translate-App/motula_translate_app/lib/model/course.dart
paoloGuagnano e8b04d0155 add new layout
2024-03-08 15:32:42 +01:00

25 lines
541 B
Dart

import 'package:flutter/material.dart' show Color;
class Course {
final String title, description, iconSrc;
final Color color;
Course({
required this.title,
this.description = 'Build and animate an iOS app from scratch',
this.iconSrc = "assets/icons/ios.svg",
this.color = const Color(0xFF7553F6),
});
}
final List<Course> courses = [
Course(
title: "Animations in SwiftUI",
),
Course(
title: "Animations in Flutter",
iconSrc: "assets/icons/code.svg",
color: const Color(0xFF80A4FF),
),
];