Make popup look like previous appearance
This commit is contained in:
parent
23ac51c766
commit
21ab01dbcb
1 changed files with 2 additions and 9 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue