Skip to content

Commit

Permalink
imporve palmares widget
Browse files Browse the repository at this point in the history
  • Loading branch information
c3k4ah committed Apr 29, 2024
1 parent 786b522 commit df1eff6
Show file tree
Hide file tree
Showing 10 changed files with 189 additions and 218 deletions.
Binary file added assets/images/portfolio.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions lib/data/image_assets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class ImageAssets {
String get gfs => '${directory}images/gfs.png';
String get buildeo => '${directory}images/buildeo.png';
String get avg => '${directory}images/avg.png';
String get portfolio => '${directory}images/portfolio.png';
//icon
String get team => '${directory}icon/team.svg';
String get project => '${directory}icon/project.svg';
Expand Down
8 changes: 4 additions & 4 deletions lib/data/palmares_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ List<TimeLineContentModel> palmaresList = [
type: "Piscine d'integration",
title: "ESTI",
description:
"Création d'un logiciel Photobooth avec python, tkinter durant la piscine dintégration ",
"Création d'un logiciel Photobooth avec python, tkinter durant la piscine d'intégration ",
urlImage: imageAsset.esti,
urlPost:
'https://www.facebook.com/share/p/RigBued4TYWWfGRD/?mibextid=xfxF2i',
Expand All @@ -34,7 +34,7 @@ List<TimeLineContentModel> palmaresList = [
type: 'Hackathon',
title: "Devfest",
description:
"Réalisation d'un projet de gestion de permis de construction, du public au responsable administratif, tout en une seule plateforme et en un seul projet. Obtention d'une incubation chez NextA",
"Réalisation d'un projet de gestion de permis de construction,tout en une seule plateforme et en un seul projet.",
urlImage: imageAsset.devFest,
urlPost: 'https://www.facebook.com/share/Tesoeg1DnwD7tb9M/?mibextid=oFDknk',
),
Expand All @@ -57,7 +57,7 @@ List<TimeLineContentModel> palmaresList = [
type: 'Hackathon',
title: "DEVFEST",
description:
"Réalisation d'un application permettant de calibrer les déchets avant qu’ils soient pris et achetés par les récupérateurs de déchets vu la situation environnementale d’Antananarivo.",
"Réalisation d'un application permettant de calibrer les déchets d'Antananarivo.",
urlImage: imageAsset.devFest,
urlPost:
'https://www.facebook.com/share/p/BRGbiDNcHj8MShok/?mibextid=oFDknk',
Expand All @@ -69,7 +69,7 @@ List<TimeLineContentModel> palmaresList = [
type: 'Hackathon',
title: "ZahaGeek",
description:
"Une plateforme développée par la team Angivy afin d'apporter une solution au numérique pour les enfants. Disponible à la fois sur le Web et sur Mobile.",
"Une plateforme développée par la team Angivy afin d'apporter une solution au numérique pour les enfants.",
urlImage: imageAsset.zahageek,
urlPost:
'https://www.facebook.com/share/p/nBXrwuy53QG5Y5hi/?mibextid=oFDknk'),
Expand Down
24 changes: 16 additions & 8 deletions lib/data/project_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@ import '../models/project_model.dart';
import 'image_assets.dart';

List<ProjectModel> projectLIst = [
ProjectModel(
type: 'Web (Flutter)',
title: 'Portfolio',
description:
"Il s'agit d'un portfolio que j'ai avec Flutter créé pour mettre en valeur mes compétences et mon expérience.",
urlImage: imageAsset.portfolio,
urlProject: '',
),
ProjectModel(
type: 'Mobile (Flutter)',
title: 'GFS',
Expand All @@ -18,6 +26,14 @@ List<ProjectModel> projectLIst = [
urlImage: imageAsset.buildeo,
urlProject: 'https://github.com/iTeam-S/Buildeo',
),
ProjectModel(
type: 'Desktop (Flutter)',
title: 'AVG',
description:
'Accès sur les Lois Environnementales: Moderne bibiotheque numerique de loi.(en tant que front-end)',
urlImage: imageAsset.avg,
urlProject: '',
),
ProjectModel(
type: 'Mobile (Flutter)',
title: 'Rakitra',
Expand All @@ -40,12 +56,4 @@ List<ProjectModel> projectLIst = [
urlImage: imageAsset.dekoa,
urlProject: '',
),
ProjectModel(
type: 'Desktop (Flutter)',
title: 'AVG',
description:
'Accès sur les Lois Environnementales: Moderne bibiotheque numerique de loi.(en tant que front-end)',
urlImage: imageAsset.avg,
urlProject: '',
),
];
2 changes: 1 addition & 1 deletion lib/pages/home/parts/awards/awards.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class AwardPart extends StatelessWidget {
mobile: 0.8,
tablet: 0.6,
mobileLarge: 0.7,
desktop: 0.45,
desktop: 0.35,
),
enlargeCenterPage: true,
height: ResponsiveSize.number(
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/home/parts/footer/footer_v2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ class FooterPartV2 extends StatelessWidget {
image: AssetImage(
imageAsset.cekahLogo,
),
fit: BoxFit.fitWidth,
fit: BoxFit.contain,
),
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/pages/home/parts/skills/skills.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class SkillsPart extends StatelessWidget {
context: context,
// small: 710,
mobile: 610,
tablet: 550,
tablet: MediaQuery.sizeOf(context).height * .73,
mobileLarge: 400,
desktop: 630,
),
Expand Down
Loading

0 comments on commit df1eff6

Please sign in to comment.