Add and integrate actual PozoApp brand logo
This commit is contained in:
parent
6f11b367b6
commit
ca87000e87
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
|
|
@ -206,49 +206,21 @@ class _WelcomeScreenState extends State<WelcomeScreen> with SingleTickerProvider
|
||||||
width: 80,
|
width: 80,
|
||||||
height: 80,
|
height: 80,
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
color: theme.colorScheme.primary,
|
|
||||||
borderRadius: BorderRadius.circular(20),
|
borderRadius: BorderRadius.circular(20),
|
||||||
boxShadow: [
|
boxShadow: [
|
||||||
BoxShadow(
|
BoxShadow(
|
||||||
color: theme.colorScheme.primary.withOpacity(0.15),
|
color: Colors.black.withOpacity(0.12),
|
||||||
blurRadius: 24,
|
blurRadius: 20,
|
||||||
offset: const Offset(0, 8),
|
offset: const Offset(0, 6),
|
||||||
)
|
)
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
alignment: Alignment.center,
|
child: ClipRRect(
|
||||||
child: Stack(
|
borderRadius: BorderRadius.circular(20),
|
||||||
clipBehavior: Clip.none,
|
child: Image.asset(
|
||||||
children: [
|
'assets/logo/pozo_logo.jpg',
|
||||||
Text(
|
fit: BoxFit.cover,
|
||||||
'Pozo',
|
),
|
||||||
style: theme.textTheme.headlineMedium?.copyWith(
|
|
||||||
color: Colors.white,
|
|
||||||
fontWeight: FontWeight.w800,
|
|
||||||
letterSpacing: -1.0,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
Positioned(
|
|
||||||
top: -16,
|
|
||||||
right: -16,
|
|
||||||
child: Container(
|
|
||||||
padding: const EdgeInsets.all(4),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Colors.amber[700],
|
|
||||||
shape: BoxShape.circle,
|
|
||||||
border: Border.all(color: Colors.white, width: 2),
|
|
||||||
),
|
|
||||||
child: const Text(
|
|
||||||
'IN',
|
|
||||||
style: TextStyle(
|
|
||||||
color: Colors.white,
|
|
||||||
fontSize: 8,
|
|
||||||
fontWeight: FontWeight.bold,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -21,3 +21,5 @@ dev_dependencies:
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
uses-material-design: true
|
uses-material-design: true
|
||||||
|
assets:
|
||||||
|
- assets/logo/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue