[Question] why shadow_color not working on BottomAppBar #4578
-
Questionwhy shadow_color not working on BottomAppBar Code sampleself.page.bottom_appbar = ft.BottomAppBar(
bgcolor=ft.Colors.WHITE,
elevation=7,
shadow_color=ft.Colors.BLACK,
content=ft.Row(
expand=True,
alignment=ft.MainAxisAlignment.SPACE_BETWEEN,
vertical_alignment=ft.CrossAxisAlignment.CENTER,
controls=[
ft.IconButton(
icon=ft.Icons.HOME_OUTLINED,
icon_color="#4B4B4B",
icon_size=22.67*1.6,
style=ft.ButtonStyle(overlay_color=ft.Colors.TRANSPARENT)
),
ft.IconButton(
icon=ft.Icons.SEARCH_OUTLINED,
icon_color="#4B4B4B",
icon_size=22.67 * 1.6,
style=ft.ButtonStyle(overlay_color=ft.Colors.TRANSPARENT)
),
ft.Container(
width=32, height=32,
border=ft.border.all(width=3, color="#4B4B4B"),
alignment=ft.alignment.center,
content=ft.Icon(
name=ft.Icons.ADD,
color="#4B4B4B",
size=25
),
on_click=lambda e: e.page.open(
ft.BottomSheet(
content=ft.Container(
alignment=ft.alignment.center,
content=ft.Text(value="By Omar Belfeki", size=30)
)
)
)
),
ft.IconButton(
icon=ft.Icons.NOTIFICATIONS_OUTLINED,
icon_color="#4B4B4B",
icon_size=22.67 * 1.6,
style=ft.ButtonStyle(overlay_color=ft.Colors.TRANSPARENT)
),
ft.Column(
horizontal_alignment=ft.CrossAxisAlignment.CENTER,
alignment=ft.MainAxisAlignment.CENTER,
controls=[
ft.IconButton(
icon=ft.Icons.SETTINGS,
icon_color=ft.Colors.BLACK,
icon_size=22.67 * 1.6,
style=ft.ButtonStyle(overlay_color=ft.Colors.TRANSPARENT)
),
ft.Icon(
name=ft.Icons.CIRCLE,
color="#E5386D",
size=6*1.6,
offset=ft.Offset(x=0, y=-1.9)
)
]
)
]
)
) Error messageNo response ------------------------------------------------------
|
Beta Was this translation helpful? Give feedback.
Answered by
ndonkoHenri
Jan 6, 2025
Replies: 2 comments
-
I'm having the same problem. doesn't appear to work on Card either |
Beta Was this translation helpful? Give feedback.
0 replies
-
Issue has been created: #4653 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ndonkoHenri
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Issue has been created: #4653