HTMLify

project_utils.dart
Views: 15 | Author: cody
class ProjectUtils {
  final String image;
  final String title;
  final String subtitle;
  final String? androidLink;
  final String? iosLink;
  final String? webLink;

  ProjectUtils({
    required this.image,
    required this.title,
    required this.subtitle,
    this.androidLink,
    this.iosLink,
    this.webLink,
  });
}

// ################
// HOBBY PROJECTS
List<ProjectUtils> hobbyProjectUtils = [
  ProjectUtils(
    image: "assets/projects/1.png",
    title: "English Learning App",
    subtitle: "This is a comprehensive English learning app for practicing and competing with each other.",
    androidLink: "https://play.google.com/store/apps/details?id=com.shohatech.eduza",
  ),
  ProjectUtils(
    image: "assets/projects/02.png",
    title: "English Dictionary App",
    subtitle: "This is a dictionary application for English leaners to easily look up word definitions.",
    androidLink: "https://play.google.com/store/apps/details?id=com.shohatech.eduza_eng_dictionary",
    iosLink: "https://apps.apple.com/us/app/eduza-english-dictionary/id6443770339",
  ),
  ProjectUtils(
    image: "assets/projects/03.png",
    title: "Pocket Dictionary",
    subtitle: "This is a word memorising app to save and play your own words as quizes",
    androidLink: "https://play.google.com/store/apps/details?id=com.shohruhak.eng_pocket_dictionary",
    iosLink: "https://apps.apple.com/tr/app/pocket-dictionary-1/id6447465115",
  ),
  ProjectUtils(
    image: "assets/projects/04.png",
    title: "Tasbeeh Counter",
    subtitle: "This is a simple dzikr counter app fo muslims with persistent storage",
    androidLink: "https://play.google.com/store/apps/details?id=com.shohatech.tasbeeh",
  ),
  ProjectUtils(
    image: "assets/projects/05.png",
    title: "Todo App",
    subtitle: "This is a simple task management app with persistent storage",
    androidLink: "https://play.google.com/store/apps/details?id=com.shohatech.todo",
    iosLink: "https://apps.apple.com/us/app/eduza-todo/id6443970333",
  ),
  ProjectUtils(
    image: "assets/projects/06.png",
    title: "NotePad App",
    subtitle: "This is a note taking app for MacOS and Android",
    androidLink: "https://play.google.com/store/apps/details?id=com.shohatech.notepad",
    iosLink: "https://apps.apple.com/us/app/eduza-notepad/id6443973859",
  ),
];

// ##############
// WORK PROJECTS
List<ProjectUtils> workProjectUtils = [
  ProjectUtils(
    image: "assets/projects/w01.png",
    title: "English Brain Craft",
    subtitle: "This is an English learning app for students to learn English through various methods.",
    androidLink: "https://play.google.com/store/apps/details?id=com.shohatech.eduza",
    iosLink: "https://apps.apple.com/kr/app/%EC%98%81%EC%96%B4%EB%A8%B8%EB%A6%AC-%EA%B3%B5%EC%9E%91%EC%86%8C/id1507102714",
  ),
  ProjectUtils(
    image: "assets/projects/w02.png",
    title: "Online Shop Web App",
    subtitle: "This is a responsive online shop web application for car engine oil.",
    webLink: "https://www.elo.best/",
  ),
  ProjectUtils(
    image: "assets/projects/w03.jpeg",
    title: "Advertisement Management System",
    subtitle: "This is an Advertisement Management System to buy, sell, and manage advertisement.",
    androidLink: "https://play.google.com/store/apps/details?id=com.shohatech.eduza",
    webLink: "https://www.externally.unavailable.project/",
  ),
];

Comments