Skip to content

Commit

Permalink
feat: remove twitter references
Browse files Browse the repository at this point in the history
  • Loading branch information
deandreamatias committed Jun 25, 2024
1 parent 507fa28 commit 04026a4
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 28 deletions.
3 changes: 1 addition & 2 deletions lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@
"email": "Email",
"linkedin": "LinkedIn",
"github": "Github",
"behance": "Behance",
"twitter": "Twitter"
"behance": "Behance"
}
3 changes: 1 addition & 2 deletions lib/l10n/app_es.arb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@
"email": "Email",
"linkedin": "LinkedIn",
"github": "Github",
"behance": "Behance",
"twitter": "Twitter"
"behance": "Behance"
}
3 changes: 1 addition & 2 deletions lib/l10n/app_pt.arb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,5 @@
"email": "Email",
"linkedin": "LinkedIn",
"github": "Github",
"behance": "Behance",
"twitter": "Twitter"
"behance": "Behance"
}
1 change: 0 additions & 1 deletion lib/ui/shared/portfolio_icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ class CustomIcons {
static const IconData pause = IconData(0xe90b, fontFamily: _fontFamily);
static const IconData play = IconData(0xe90c, fontFamily: _fontFamily);
static const IconData share = IconData(0xe90d, fontFamily: _fontFamily);
static const IconData twitter = IconData(0xe904, fontFamily: _fontFamily);
}
12 changes: 7 additions & 5 deletions lib/ui/shared/styles.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ final ThemeData themeDark = ThemeData(
primaryContainer: Colors.orange,
secondaryContainer: Colors.deepOrange,
surface: Colors.white,
onSurface: Colors.black,
onSurface: Colors.white,
brightness: Brightness.dark,
),
primaryColorDark: primary,
Expand All @@ -38,6 +38,7 @@ final ThemeData themeDark = ThemeData(
elevatedButtonTheme: ElevatedButtonThemeData(
style: ButtonStyle(
backgroundColor: WidgetStateProperty.all<Color>(accent),
foregroundColor: WidgetStateProperty.all<Color>(Colors.white),
shape: WidgetStateProperty.all<OutlinedBorder>(
const RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(30.0)),
Expand All @@ -47,9 +48,10 @@ final ThemeData themeDark = ThemeData(
),
textButtonTheme: TextButtonThemeData(
style: ButtonStyle(
padding: WidgetStateProperty.all<EdgeInsetsGeometry>(
const EdgeInsets.all(16.0),
),
foregroundColor: WidgetStateProperty.all<Color>(Colors.white)),
padding: WidgetStateProperty.all<EdgeInsetsGeometry>(
const EdgeInsets.all(16.0),
),
foregroundColor: WidgetStateProperty.all<Color>(Colors.white),
),
),
);
7 changes: 0 additions & 7 deletions lib/ui/widgets/footer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,6 @@ class Footer extends StatelessWidget {
onPressed: () =>
openLink(Uri.parse('https://www.behance.net/deandreamatias')),
),
const SizedBox(width: 16.0),
IconButton(
icon: const Icon(CustomIcons.twitter),
tooltip: AppLocalizations.of(context)!.twitter,
onPressed: () =>
openLink(Uri.parse('https://twitter.com/deandreamatias')),
),
],
)
],
Expand Down
9 changes: 0 additions & 9 deletions web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,6 @@
<meta property="og:locale:alternate" content="pt_BR"/>
<meta property="og:type" content="profile">

<!-- Twitter meta -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@deandreamatias" />
<meta name="twitter:creator" content="@deandreamatias" />
<meta name="twitter:title" content="deandreamatias | Mobile developer with Flutter" />
<meta name="twitter:description" content="Matias de Andrea is a creative and dynamic developer. Work with mobile applications, developing UI/UX and software with Flutter" />
<meta name="twitter:image" content="https://deandreamatias.com/profile.png" />

<!-- Favicon -->
<link rel="shortcut icon" type="image/png" href="favicon.png"/>

Expand All @@ -50,7 +42,6 @@
"url": "https://deandreamatias.com",
"image": "https://deandreamatias.com/profile.png",
"sameAs": [
"https://twitter.com/deandreamatias",
"https://www.linkedin.com/in/deandreamatias",
"https://github.com/deandreamatias"
],
Expand Down

0 comments on commit 04026a4

Please sign in to comment.