Add faux-bold shadows to logo 'i'
This commit is contained in:
parent
2d4decaea6
commit
bcee39c9d9
|
|
@ -354,14 +354,20 @@ class _LoginScreenState extends State<LoginScreen> {
|
|||
color: InouColors.accent,
|
||||
borderRadius: BorderRadius.circular(16),
|
||||
),
|
||||
child: const Center(
|
||||
child: Center(
|
||||
child: Text(
|
||||
'i',
|
||||
style: TextStyle(
|
||||
color: Colors.white,
|
||||
fontSize: 56,
|
||||
fontSize: 54,
|
||||
fontWeight: FontWeight.w900,
|
||||
fontFamily: 'sans-serif-black',
|
||||
// Faux-bold effect using shadows
|
||||
shadows: const [
|
||||
Shadow(offset: Offset(0.5, 0), color: Colors.white),
|
||||
Shadow(offset: Offset(-0.5, 0), color: Colors.white),
|
||||
Shadow(offset: Offset(0, 0.5), color: Colors.white),
|
||||
Shadow(offset: Offset(0, -0.5), color: Colors.white),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in New Issue