Make popup look like previous appearance

This commit is contained in:
Kelrap 2024-08-02 09:22:53 -04:00
parent 23ac51c766
commit 21ab01dbcb

View file

@ -109,13 +109,9 @@ class SelectionPopup extends StatelessWidget {
return Material(
type: MaterialType.transparency,
child: Container(
// padding: const EdgeInsets.all(5),
padding: const EdgeInsets.all(5),
decoration: BoxDecoration(
color: Theme.of(context).colorScheme.surfaceContainer,
border: Border.all(
width: 3,
color: Theme.of(context).colorScheme.surfaceContainerHighest,
),
borderRadius: const BorderRadius.all(
Radius.circular(20),
),
@ -126,6 +122,7 @@ class SelectionPopup extends StatelessWidget {
),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
TextButton(
onPressed: controller.showEventInfo,
@ -138,10 +135,6 @@ class SelectionPopup extends StatelessWidget {
],
),
),
Divider(
color: Theme.of(context).colorScheme.surfaceContainerHighest,
height: 5,
),
TextButton(
onPressed: controller.reportEventAction,
child: Row(