Skip to content

Commit

Permalink
Links added
Browse files Browse the repository at this point in the history
  • Loading branch information
ojasjain24 committed Jun 7, 2024
1 parent fb3fca0 commit da8d0ed
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Binary file added assets/images/itchio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion lib/cards.dart
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,9 @@ class CertificateCardState extends State<CertificateCard> {
}
},
onTap: () {
launch(widget.model.link);
if (widget.model.link != "") {
launch(widget.model.link);
}
},
child: NeonContainer(
lightSpreadRadius: size.width > 850 ? 15 : 4,
Expand Down
4 changes: 3 additions & 1 deletion lib/data_file.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ class PortfolioDetails {
"Enigma Runner is a platformer game, in which the player has to collect artifacts at the end of every level to complete the story. There are some mind boggling twists at the end of every level, which the player needs to overcome to clear the level. Currently It has 4 levels and can be played on IOS, Android and windows",
links: [
IconLinkModel("assets/images/google-play.png",
"https://play.google.com/store/apps/details?id=com.Affix.EnigmaRunner")
"https://play.google.com/store/apps/details?id=com.Affix.EnigmaRunner"),
IconLinkModel("assets/images/itchio.png",
"https://affixgames.itch.io/enigma-runner")
]),
BuildsModel(
assetImage: "assets/images/512.png",
Expand Down

0 comments on commit da8d0ed

Please sign in to comment.