experiments/veo-app/pages/imagen.py [108:136]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                style=me.Style(
                    padding=me.Padding(top=16, left=16, right=16),
                    background=me.theme_var("secondary-container"),
                    outline="none",
                    width="100%",
                    overflow_y="auto",
                    border=me.Border.all(
                        me.BorderSide(style="none"),
                    ),
                    color=me.theme_var("foreground"),
                    flex_grow=1,
                ),
                on_blur=on_blur_lyria_prompt,
                key=str(pagestate.music_prompt_textarea_key),
                value=pagestate.music_prompt_placeholder,
            )
        with me.box(
            style=me.Style(
                display="flex",
                flex_direction="column",
                gap=10,
            )
        ):
            # do the lyria
            with me.content_button(
                type="icon",
                on_click=on_click_lyria,
            ):
                with me.box(style=icon_style):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



experiments/veo-app/pages/lyria.py [107:135]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                style=me.Style(
                    padding=me.Padding(top=16, left=16, right=16),
                    background=me.theme_var("secondary-container"),
                    outline="none",
                    width="100%",
                    overflow_y="auto",
                    border=me.Border.all(
                        me.BorderSide(style="none"),
                    ),
                    color=me.theme_var("foreground"),
                    flex_grow=1,
                ),
                on_blur=on_blur_lyria_prompt,
                key=str(pagestate.music_prompt_textarea_key),
                value=pagestate.music_prompt_placeholder,
            )
        with me.box(
            style=me.Style(
                display="flex",
                flex_direction="column",
                gap=10,
            )
        ):
            # do the lyria
            with me.content_button(
                type="icon",
                on_click=on_click_lyria,
            ):
                with me.box(style=icon_style):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



