Improved log details modal bottom sheet

This commit is contained in:
Juan Gilsanz Polo 2022-10-17 18:32:39 +02:00
parent ca94c94d4a
commit 9b63bba853

View file

@ -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),