Update LibAC version, add two new portfolio entries.

This commit is contained in:
zontreck 2024-06-07 17:12:36 -07:00
parent 043b06dedc
commit 6c066564b9
8 changed files with 45 additions and 29 deletions

View file

@ -26,7 +26,8 @@ class PortfolioPage extends StatelessWidget {
child: Row(
children: [
PortfolioEntry(
title: const ListTile(title: Text("Cards of Utter Nonsense")),
title: const ListTile(
title: Text("Cards of Utter Nonsense")),
body: const Text(
"A product I created for Second Life, but may port to the mobile phone at some point"),
onTap: () {
@ -42,6 +43,16 @@ class PortfolioPage extends StatelessWidget {
title: const Text("Minecraft Modding"),
body: const Text(
"These mods are all written in Java. The various mods I currently maintain, previously maintained, or have contributed to are: Thresholds, Aria's Essentials, LibZontreck, Let's Do Beachparty, WatchMyDurability"),
onTap: () {}),
PortfolioEntry(
title: const Text("Lib AC"),
body: const Text(
("Aria's Creations CommonCode Library. Oh hey, this website uses that! This is written in pure Dart, with no Flutter dependencies. The library is meant to be compatible with any dart project I work on")),
onTap: () {}),
PortfolioEntry(
title: const Text("NBT Editor"),
body: const Text(
"This utilizes the NBT implementation in LibAC. It's a Named Binary Tag editor written entirely in dart or flutter."),
onTap: () {})
],
),
@ -57,7 +68,10 @@ class PortfolioEntry extends StatelessWidget {
final Function() onTap;
const PortfolioEntry(
{super.key, required this.title, required this.body, required this.onTap});
{super.key,
required this.title,
required this.body,
required this.onTap});
@override
Widget build(BuildContext context) {