mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-27 09:16:07 +00:00
Improved log details modal bottom sheet
This commit is contained in:
parent
ca94c94d4a
commit
9b63bba853
1 changed files with 18 additions and 17 deletions
|
@ -42,26 +42,27 @@ class LogDetailsModal extends StatelessWidget {
|
|||
),
|
||||
child: Column(
|
||||
children: [
|
||||
const Padding(
|
||||
padding: EdgeInsets.only(
|
||||
top: 24,
|
||||
bottom: 20,
|
||||
),
|
||||
child: Icon(
|
||||
Icons.list_rounded,
|
||||
size: 26,
|
||||
),
|
||||
),
|
||||
Text(
|
||||
AppLocalizations.of(context)!.logDetails,
|
||||
style: const TextStyle(
|
||||
fontSize: 24
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: ListView(
|
||||
controller: scrollController,
|
||||
children: [
|
||||
const Padding(
|
||||
padding: EdgeInsets.only(
|
||||
top: 28,
|
||||
bottom: 20,
|
||||
),
|
||||
child: Icon(
|
||||
Icons.list_rounded,
|
||||
size: 26,
|
||||
),
|
||||
),
|
||||
Text(
|
||||
AppLocalizations.of(context)!.logDetails,
|
||||
textAlign: TextAlign.center,
|
||||
style: const TextStyle(
|
||||
fontSize: 24
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(20),
|
||||
child: Text(
|
||||
|
@ -179,7 +180,7 @@ class LogDetailsModal extends StatelessWidget {
|
|||
subtitle: log.clientInfo!.name
|
||||
),
|
||||
],
|
||||
)
|
||||
),
|
||||
),
|
||||
Padding(
|
||||
padding: const EdgeInsets.all(20),
|
||||
|
|
Loading…
Add table
Reference in a new issue