Flutter title and icon alignment fixes

This commit is contained in:
Juan José Mata
2026-02-16 04:37:18 +01:00
parent 2dcb4b4f67
commit 1995c62ddf
2 changed files with 11 additions and 12 deletions

View File

@@ -139,15 +139,17 @@ class _MainNavigationScreenState extends State<MainNavigationScreen> {
),
actions: [
Padding(
padding: const EdgeInsets.only(top: 12, right: 12),
child: InkWell(
onTap: () {
_handleSelectSettings(authProvider, introLayout);
},
child: const SizedBox(
width: 36,
height: 36,
child: Icon(Icons.settings_outlined),
padding: const EdgeInsets.only(right: 12),
child: Center(
child: InkWell(
onTap: () {
_handleSelectSettings(authProvider, introLayout);
},
child: const SizedBox(
width: 36,
height: 36,
child: Icon(Icons.settings_outlined),
),
),
),
),

View File

@@ -122,9 +122,6 @@ class _SettingsScreenState extends State<SettingsScreen> {
final authProvider = Provider.of<AuthProvider>(context);
return Scaffold(
appBar: AppBar(
title: const Text('Settings'),
),
body: ListView(
children: [
// User info section