diff --git a/assets/images/portrait.png b/assets/images/portrait.png deleted file mode 100644 index 832048a..0000000 Binary files a/assets/images/portrait.png and /dev/null differ diff --git a/assets/images/portrait.webp b/assets/images/portrait.webp new file mode 100644 index 0000000..90b7d6e Binary files /dev/null and b/assets/images/portrait.webp differ diff --git a/lib/pages/home.dart b/lib/pages/home.dart index b38934f..80b3122 100644 --- a/lib/pages/home.dart +++ b/lib/pages/home.dart @@ -74,7 +74,7 @@ class _Portrait extends StatelessWidget { @override Widget build(BuildContext context) => Padding( padding: const EdgeInsets.only(top: 50), - child: Image.asset('assets/images/portrait.png'), + child: Image.asset('assets/images/portrait.webp'), ); } @@ -96,13 +96,12 @@ class _Greeting extends StatelessWidget { crossAxisAlignment: CrossAxisAlignment.start, children: [ Text( - 'Hello, I’m ', + 'Hi, I’m ', style: isCompact ? textTheme.displaySmall : textTheme.displayMedium, ), Text( 'Alejandro Fernández', style: nameStyle?.copyWith( - fontWeight: FontWeight.bold, color: colorScheme.primary, ), ), diff --git a/package.json b/package.json index 97e229a..4f2e10c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "portfolio", - "version": "0.4.0", + "version": "0.5.0", "description": "Portfolio of Alejandro Fernández Alburquerque.", "config": { "port": 8080, diff --git a/pubspec.lock b/pubspec.lock index b514172..06b6362 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -921,4 +921,4 @@ packages: version: "3.1.2" sdks: dart: ">=3.5.0 <4.0.0" - flutter: ">=3.24.0" + flutter: ">=3.24.4" diff --git a/pubspec.yaml b/pubspec.yaml index f01a6f2..03567be 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -16,11 +16,11 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 0.3.0 +version: 0.5.0 environment: sdk: ">=3.4.4 <4.0.0" - flutter: 3.24.0 + flutter: 3.24.4 # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions