fix(flutter): increase watermark opacity and apply to settings

This commit is contained in:
ospab 2026-07-10 00:09:55 +03:00
parent 22c2d5edd8
commit eda2a0eba7
2 changed files with 29 additions and 13 deletions

View File

@ -481,7 +481,7 @@ class _HomeScreenState extends State<HomeScreen> with TickerProviderStateMixin {
children: [ children: [
Positioned.fill( Positioned.fill(
child: Opacity( child: Opacity(
opacity: 0.03, opacity: 0.1,
child: Center( child: Center(
child: Image.asset( child: Image.asset(
'assets/logo.png', 'assets/logo.png',

View File

@ -555,7 +555,21 @@ class _SettingsScreenState extends State<SettingsScreen> {
), ),
], ],
), ),
body: ListView( body: Stack(
children: [
Positioned.fill(
child: Opacity(
opacity: 0.1,
child: Center(
child: Image.asset(
'assets/logo.png',
width: MediaQuery.of(context).size.shortestSide * 0.6,
color: Colors.white,
),
),
),
),
ListView(
padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 16), padding: const EdgeInsets.symmetric(horizontal: 24, vertical: 16),
children: [ children: [
const Text('PROFILES', style: TextStyle(color: Colors.white54, fontSize: 13, fontWeight: FontWeight.bold, letterSpacing: 1.0)), const Text('PROFILES', style: TextStyle(color: Colors.white54, fontSize: 13, fontWeight: FontWeight.bold, letterSpacing: 1.0)),
@ -564,7 +578,7 @@ class _SettingsScreenState extends State<SettingsScreen> {
Center( Center(
child: Padding( child: Padding(
padding: const EdgeInsets.all(32.0), padding: const EdgeInsets.all(32.0),
child: Text('Create a new profile', style: TextStyle(color: Colors.white.withOpacity(0.5), fontSize: 18)), child: Text('Create a new profile', style: TextStyle(color: Colors.white54, fontSize: 18)),
), ),
) )
else else
@ -674,6 +688,8 @@ class _SettingsScreenState extends State<SettingsScreen> {
const SizedBox(height: 40), const SizedBox(height: 40),
], ],
), ),
],
),
); );
} }