mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-14 08:12:16 -06:00
feat: rework account management page, add tooltip to settings
This commit is contained in:
@@ -12,6 +12,16 @@ class ApplicationSettingsPage extends StatelessWidget {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text(S.of(context)!.applicationSettings),
|
||||
actions: [
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(16.0),
|
||||
child: Tooltip(
|
||||
triggerMode: TooltipTriggerMode.tap,
|
||||
message: "These settings apply to all accounts", //TODO: INTL
|
||||
child: Icon(Icons.info_outline),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
body: ListView(
|
||||
children: const [
|
||||
|
||||
Reference in New Issue
Block a user