@@ -118,8 +118,17 @@ class ProjectsState extends State<Projects> with WidgetsBindingObserver {
118
118
image: AssetImage ("assets/projects/crossclip/website_logo_${ThemeController .of (context ).isDark ? "dark" : "light" }.png" ),
119
119
title: "CrossClip" ,
120
120
description: "A secure, versatile, and seamless cross-platform clipboard manager and file transfer agent" ,
121
- projectStatus: ProjectStatus .ALPHA ,
122
- linkName: "crossclip" ,
121
+ projectStatus: ProjectStatus .RELEASED ,
122
+ linkRow: Row (
123
+ mainAxisAlignment: MainAxisAlignment .spaceEvenly,
124
+ children: [
125
+ IconLink (
126
+ icon: Icons .link,
127
+ link: "https://cclip.app" ,
128
+ padding: const EdgeInsets .all (10 ),
129
+ )
130
+ ]
131
+ ),
123
132
),
124
133
125
134
//FTC Scouting and Scoring's listing
@@ -128,7 +137,6 @@ class ProjectsState extends State<Projects> with WidgetsBindingObserver {
128
137
title: "FTC Scouring and Scoring" ,
129
138
description: "An intuitive, real-time, cloud-based Scouting and Scoring application built for ease and synchronization" ,
130
139
projectStatus: ProjectStatus .RELEASED ,
131
- linkName: "ftcscoutscore" ,
132
140
),
133
141
134
142
//blinkOS's listing
@@ -137,7 +145,6 @@ class ProjectsState extends State<Projects> with WidgetsBindingObserver {
137
145
title: "blinkOS - A hackSugar Project" ,
138
146
description: "An Android-based operating system build to ensure the user's privacy, security, and anonymity." ,
139
147
projectStatus: ProjectStatus .ALPHA ,
140
- linkName: "blinkos" ,
141
148
),
142
149
143
150
//Weasel's listing
@@ -146,7 +153,6 @@ class ProjectsState extends State<Projects> with WidgetsBindingObserver {
146
153
title: "Weasel - A hackSugar Project" ,
147
154
description: "An encrypted messaging client built to secure and improve upon the already widespread SMS protocol." ,
148
155
projectStatus: ProjectStatus .DEVELOPMENT ,
149
- linkName: "weasel" ,
150
156
),
151
157
];
152
158
}
0 commit comments