Skip to content

Commit

Permalink
feat: Update page infos
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustl22 committed Feb 29, 2024
1 parent 11d4b87 commit fc2e6e6
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 31 deletions.
1 change: 1 addition & 0 deletions lib/components/icon_tile.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class IconTileWidget extends StatelessWidget {
},
tooltip: tooltip,
),
width: 140,
),
);
}
Expand Down
4 changes: 2 additions & 2 deletions lib/sites/contact.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ class ContactWidget extends StatelessWidget {
padding: EdgeInsets.symmetric(vertical: 16),
child: SelectableText('''
August Oberhauser
Johann-Clanze-Str. 32,
81369 Munich, Germany
Großhausener Str. 16,
86551 Aichach, Germany
'''),
),
TextButton.icon(
Expand Down
56 changes: 28 additions & 28 deletions lib/sites/projects.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,48 +21,54 @@ class ProjectsWidget extends StatelessWidget {
Divider(),
SizedBox(height: 12),
Row(children: [
Icon(Devicon.android),
Icon(Devicon.flutter),
SizedBox(
width: 12,
),
Text(
'Android',
'Flutter',
style: TextStyle(fontWeight: FontWeight.normal, fontSize: 22),
textAlign: TextAlign.left,
),
]),
ListViewWidget([
IconTileWidget(
SvgPicture.asset('assets/images/projects/AppInsGruene_Logo.svg'),
url: 'https://play.google.com/store/apps/details?id=de.lmu.treeapp',
tooltip: 'App Ins Grüne (Collab., LMU Munich)',
SvgPicture.asset(
'assets/images/projects/TSV_Aichach_Wrestling_Invert.svg'),
url: 'https://wrestling-scoreboard.oberhauser.dev',
tooltip: 'Wrestling Scoreboard',
),
IconTileWidget(
SvgPicture.asset(
'assets/images/projects/Naturfreunde_SkiAlpin_Logo_dark.svg'),
url: 'https://ski.naturfreunde.oberhauser.dev',
tooltip: 'Naturfreunde Ski Alpin Schneesport App',
),
IconTileWidget(
SvgPicture.asset(
'assets/images/projects/Oberhauser-Dev-simple.svg'),
url: 'https://oberhauser.dev',
tooltip: 'Oberhauser Development (this page)',
),
]),
Divider(),
SizedBox(height: 12),
Row(children: [
Icon(Devicon.flutter),
Icon(Devicon.android),
SizedBox(
width: 12,
),
Text(
'Flutter',
'Android',
style: TextStyle(fontWeight: FontWeight.normal, fontSize: 22),
textAlign: TextAlign.left,
),
]),
ListViewWidget([
IconTileWidget(
SvgPicture.asset(
'assets/images/projects/TSV_Aichach_Wrestling_Invert.svg'),
url: 'https://wrestling-scoreboard.oberhauser.dev',
tooltip: 'Wrestling Scoreboard',
),
IconTileWidget(
SvgPicture.asset(
'assets/images/projects/Oberhauser-Dev-simple.svg'),
url: 'https://oberhauser.dev',
tooltip: 'Oberhauser Development (this page)',
SvgPicture.asset('assets/images/projects/AppInsGruene_Logo.svg'),
url: 'https://play.google.com/store/apps/details?id=de.lmu.treeapp',
tooltip: 'App Ins Grüne (Collab., LMU Munich)',
),
]),
Divider(),
Expand All @@ -79,17 +85,11 @@ class ProjectsWidget extends StatelessWidget {
),
]),
ListViewWidget([
IconTileWidget(
SvgPicture.asset(
'assets/images/projects/Naturfreunde_SkiAlpin_Logo_dark.svg'),
url: 'https://expo.io/@naturfreunde/naturfreunde-ski-alpin',
tooltip: 'Ski Alpin Schneesport App',
),
IconTileWidget(
SvgPicture.asset('assets/images/projects/MemeGenerator.svg'),
url: 'https://memes.reb0.org/',
tooltip: 'Meme Generator (Collab., LMU Munich)',
),
// IconTileWidget(
// SvgPicture.asset('assets/images/projects/MemeGenerator.svg'),
// url: 'https://memes.reb0.org/',
// tooltip: 'Meme Generator (Collab., LMU Munich)',
// ),
IconTileWidget(
SvgPicture.asset('assets/images/projects/GB-FullCalendar.svg'),
url: 'https://github.com/Oberhauser-Dev/gb-fullcalendar',
Expand Down
2 changes: 1 addition & 1 deletion lib/sites/services.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ServicesWidget extends StatelessWidget {
),
SizedBox(height: 12),
Text(
'I offer the following technologies, with which you can have your web presence or app implemented.'),
'The following technologies are offered for creating your web presence or app implementation.'),
SizedBox(height: 12),
Divider(),
SizedBox(height: 12),
Expand Down

0 comments on commit fc2e6e6

Please sign in to comment.