fix(ui_kit): add local font assets + compress images

This commit is contained in:
2023-02-14 14:48:11 +01:00
parent bd636e9d24
commit 198d83b663
28 changed files with 11 additions and 10 deletions
@@ -46,7 +46,7 @@ class InformationCards extends StatelessWidget {
child: Container(
decoration: const BoxDecoration(
image: DecorationImage(
image: AssetImage('assets/asset_1.png'),
image: AssetImage('assets/images/asset_1.png'),
fit: BoxFit.fitHeight,
alignment: Alignment.centerRight,
),
@@ -112,7 +112,7 @@ class InformationCards extends StatelessWidget {
child: Container(
decoration: const BoxDecoration(
image: DecorationImage(
image: AssetImage('assets/asset_1.png'),
image: AssetImage('assets/images/asset_1.png'),
fit: BoxFit.fitHeight,
alignment: Alignment.centerRight,
),
@@ -39,7 +39,7 @@ class PortfolioCards extends StatelessWidget {
],
assets: [
Image.asset(
'assets/mockup_1.png',
'assets/images/mockup_1.png',
alignment: Alignment.topCenter,
fit: BoxFit.cover,
)
@@ -72,7 +72,7 @@ class PortfolioCards extends StatelessWidget {
],
assets: [
Image.asset(
'assets/mockup_1.png',
'assets/images/mockup_1.png',
alignment: Alignment.topCenter,
fit: BoxFit.cover,
)
@@ -105,12 +105,12 @@ class PortfolioCards extends StatelessWidget {
],
assets: [
Image.asset(
'assets/mockup_1.png',
'assets/images/mockup_1.png',
alignment: Alignment.topCenter,
fit: BoxFit.cover,
),
Image.asset(
'assets/mockup_1.png',
'assets/images/mockup_1.png',
alignment: Alignment.topCenter,
fit: BoxFit.cover,
)
@@ -148,17 +148,17 @@ class PortfolioCards extends StatelessWidget {
],
assets: [
Image.asset(
'assets/mockup_1.png',
'assets/images/mockup_1.png',
alignment: Alignment.topCenter,
fit: BoxFit.cover,
),
Image.asset(
'assets/mockup_2.png',
'assets/images/mockup_2.png',
alignment: Alignment.topCenter,
fit: BoxFit.cover,
),
Image.asset(
'assets/mockup_1.png',
'assets/images/mockup_1.png',
alignment: Alignment.topCenter,
fit: BoxFit.cover,
)