mirror of
https://github.com/we-promise/sure
synced 2026-04-25 17:15:07 +02:00
Flutter title and icon alignment fixes
This commit is contained in:
@@ -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),
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user