Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
[Controls] Add repo for issue #13305
Browse files Browse the repository at this point in the history
  • Loading branch information
rmarinho committed Jan 6, 2021
1 parent 2e138cb commit 43633a2
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,34 @@ ContentPage CreateContentPage()
}
}),
AutomationId = "ToggleHeaderFooter"
},
new Button()
{
Text = "Toggle Header/Footer Transparent",
Command = new Command(() =>
{
if (FlyoutHeader == null)
{
FlyoutFooter =
new Label()
{
Text = "The FOOTER",
TextColor = Color.Blue
};
FlyoutHeader =
new Label()
{
Text = "The HEADER",
TextColor = Color.Blue
};
}
else
{
FlyoutHeader = FlyoutFooter = null;
}
}),
AutomationId = "ToggleHeaderFooterTransparent"
}
}
};
Expand Down

0 comments on commit 43633a2

Please sign in to comment.