Use elevated colors for map elements

This commit is contained in:
ashilkn 2023-06-22 11:35:39 +05:30
parent f0389133a7
commit 6e3b5bdf00
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ class MapButton extends StatelessWidget {
elevation: 2,
heroTag: heroTag,
highlightElevation: 3,
backgroundColor: colorScheme.backgroundBase,
backgroundColor: colorScheme.backgroundElevated,
mini: true,
onPressed: onPressed,
splashColor: Colors.transparent,

View file

@ -223,12 +223,12 @@ class _MapScreenState extends State<MapScreen> {
),
bottomSheet: InteractiveBottomSheet(
options: InteractiveBottomSheetOptions(
backgroundColor: colorScheme.backgroundBase,
backgroundColor: colorScheme.backgroundElevated,
maxSize: 0.8,
),
draggableAreaOptions: DraggableAreaOptions(
topBorderRadius: 12,
backgroundColor: colorScheme.backgroundBase,
backgroundColor: colorScheme.backgroundElevated2,
indicatorColor: colorScheme.fillBase,
height: bottomSheetDraggableAreaHeight,
indicatorHeight: 4,