Skip to content

Commit bcb4140

Browse files
committed
add the xotp project listing
Signed-off-by: Tejas Mehta <[email protected]>
1 parent 7d5a53d commit bcb4140

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

assets/third_party/cargo_logo.png

57.4 KB
Loading

lib/ui/projects.dart

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,33 @@ class ProjectsState extends State<Projects> with WidgetsBindingObserver {
273273
),
274274
linkName: "argon2swift",
275275
),
276-
276+
// xotp's Listing
277+
DeveloperProjectListItem(
278+
title: "xotp",
279+
description: "A Rust Crate that provides pure-rust implementations of the HOTP and TOTP algorithms",
280+
projectStatus: ProjectStatus.RELEASED,
281+
linkRow: Row(
282+
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
283+
children: [
284+
ImageLink(
285+
link: "https://github.com/tmthecoder/xotp",
286+
assetUri: "assets/third_party/github_logo_${ThemeController.of(context).isDark ? "dark" : "light"}.png",
287+
edgeInsets: const EdgeInsets.all(10),
288+
),
289+
ImageLink(
290+
link: "https://crates.io/crates/xotp",
291+
assetUri: "assets/third_party/cargo_logo.png",
292+
edgeInsets: const EdgeInsets.all(10),
293+
),
294+
IconLink(
295+
icon: Icons.code,
296+
link: "https://docs.tmthecoder.dev/xotp",
297+
padding: const EdgeInsets.all(10),
298+
)
299+
],
300+
),
301+
linkName: "xotp"
302+
),
277303
//OdometryCore's Listing
278304
DeveloperProjectListItem(
279305
title: "Odometry Core",

pubspec.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ packages:
2121
name: characters
2222
url: "https://pub.dartlang.org"
2323
source: hosted
24-
version: "1.1.0"
24+
version: "1.2.0"
2525
charcode:
2626
dependency: transitive
2727
description:
@@ -316,7 +316,7 @@ packages:
316316
name: vector_math
317317
url: "https://pub.dartlang.org"
318318
source: hosted
319-
version: "2.1.0"
319+
version: "2.1.1"
320320
win32:
321321
dependency: transitive
322322
description:
@@ -332,5 +332,5 @@ packages:
332332
source: hosted
333333
version: "0.2.0"
334334
sdks:
335-
dart: ">=2.12.0 <3.0.0"
335+
dart: ">=2.14.0 <3.0.0"
336336
flutter: ">=1.24.0-6.0.pre"

0 commit comments

Comments
 (0)