Hi Harsh Bhanushali,
Create a Boolean attribute (e.g., IsListVisible) to control visibility.
Add two Button widgets ("Show Order" and "Hide Order").
Show Button: On click, set IsListVisible to true (to show the List View).
Hide Button: On click, set IsListVisible to false (to hide the List View).
Use Conditional Visibility: Set the List View to show/hide based on IsListVisible.
Show "Show Order" when IsListVisible = false, and "Hide Order" when IsListVisible = true.