Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ShellContent Title Does Not Update at Runtime #26049

Open
devanathan-vaithiyanathan opened this issue Nov 22, 2024 · 3 comments · May be fixed by #26062
Open

ShellContent Title Does Not Update at Runtime #26049

devanathan-vaithiyanathan opened this issue Nov 22, 2024 · 3 comments · May be fixed by #26062
Assignees
Labels
area-controls-shell Shell Navigation, Routes, Tabs, Flyout platform/iOS 🍎 platform/macOS 🍏 macOS / Mac Catalyst t/bug Something isn't working

Comments

@devanathan-vaithiyanathan
Copy link
Contributor

devanathan-vaithiyanathan commented Nov 22, 2024

Description

The issue occurs when the title of ShellContent does not update dynamically at runtime. Even after modifying the Title property of ShellContent via button click, the title remains unchanged in the UI.

Steps to Reproduce

Create a TabBar with nested ShellContent items.
Add a button that changes the Title of the ShellContent when clicked.
Run the app.
Click the "Change Title" button.

AppShell.xaml

<TabBar AutomationId="TabBar">
    <Tab Title="Nested Tabs" AutomationId="tabbar">
        <ShellContent x:Name="tab" Title="Home">
            <ContentPage>
                <StackLayout HorizontalOptions="Center" Spacing="30">
                    <Button Text="Change Title" AutomationId="ChangeShellContentTitle" VerticalOptions="Center" HorizontalOptions="Center" WidthRequest="100" HeightRequest="40" Clicked="OnButtonClicked"/>
                </StackLayout>
            </ContentPage>
        </ShellContent>

        <ShellContent Title="Settings">
            <ContentPage>
                <Label Text="This is Settings page"/>
            </ContentPage>
        </ShellContent>
    </Tab>
</TabBar>

AppShell.xaml.cs

private void OnButtonClicked(object sender, EventArgs e)
{
    tab.Title = "New Title";
}

Expected Behavior: The title of the ShellContent (tab) should change to "New Title" when the button is clicked.

Actual Behavior: The title remains as "Home" and does not update when the button is clicked.

Link to public reproduction project repository

ShellContentTitleIssue

Version with bug

9.0.10 SR1

Is this a regression from previous behavior?

Not sure, did not test other versions

Last version that worked well

Unknown/Other

Affected platforms

iOS, macOS

Affected platform versions

iOS 18.0, mac 15.1

Did you find any workaround?

Not yet.

Relevant log output

@devanathan-vaithiyanathan devanathan-vaithiyanathan added the t/bug Something isn't working label Nov 22, 2024
Copy link

We've found some similar issues:

If any of the above are duplicates, please consider closing this issue out and adding additional context in the original issue.

Note: You can give me feedback by 👍 or 👎 this comment.

@Ying-6
Copy link

Ying-6 commented Nov 22, 2024

I want to confirm with you: I see that your repro step is not consistent with the project content you provided, and I did not use your project to repro your issue. Could you help confirm whether the project you provided is correct?

@devanathan-vaithiyanathan
Copy link
Contributor Author

I want to confirm with you: I see that your repro step is not consistent with the project content you provided, and I did not use your project to repro your issue. Could you help confirm whether the project you provided is correct?

Hi @Ying-6 ,
Yes, I have provided the correct sample. Even if it contains any issues, please use this project for reproducing the issue.
ShellContentTitleIssue.zip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-controls-shell Shell Navigation, Routes, Tabs, Flyout platform/iOS 🍎 platform/macOS 🍏 macOS / Mac Catalyst t/bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

4 participants