question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Proposal: Placement of a TabView

See original GitHub issue

Proposal: Placement of a TabView

Summary

It could be useful to be able to choose the placement of the TabView (Top, Bottom, Left or Right)

Rationale

  • To be able to act a TabView like a TabControl in WPF, we need to be able to choose the placement of the TabView like Top, Bottom, Left or Right

Scope

Capability Priority
TabViewPlacement.Left Must
TabViewPlacement.Right Must
TabViewPlacement.Top Must
TabViewPlacement.Bottom Must

Important Notes

public enum TabViewPlacement { Top, Bottom, Left, Right }

public static DependencyProperty TabViewPlacementProperty {get;} = DependencyProperty.Register(
nameof(TabViewPlacement),
typeof(TabViewPlacement),
typeof(TabView),
new PropertyMetadata(TabViewPlacement.Top));

public TabViewPlacement TabViewPlacement 
{
    get => (TabViewPlacement)GetValue(TabViewPlacementProperty);
    set=>SetValue(TabViewPlacementProperty, value);
}

Open Questions

Issue Analytics

  • State:closed
  • Created 3 years ago
  • Comments:8 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
mdtaukcommented, Jul 6, 2020

Often times Tool Palettes will use bottom placed tabs.

Not including it when you also have Top, Left and Right placements, seems a bit silly though, just looking at it.

1reaction
shaheedmalikcommented, Jul 6, 2020

Can this proposal be merged with the other one? #2194

Rotated left or right tab view would work perfectly for apps such as One Note.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Getting the current index in TabView (PageTabViewStyle)
Just specify selection in image, like. Image(selected) // << here !1 .resizable() .frame(width: 150, height: 200).
Read more >
Getting Started with the .NET MAUI Tab View - YouTube
This video demonstrates how to add tab items, populate the item source, and change the tab width mode, tab bar placement, and selection ......
Read more >
TabView, UI Widgets Webix Docs
Webix Documentation: TabView is a hybrid component that is made of a multiview desktop multiview and a tabbar.
Read more >
TabLayout
OnTabSelectedListener class which contains the necessary calls back to the provided ViewPager so that the tab position is kept in sync. XML ...
Read more >
React Native Tab View
It follows material design guidelines by default, but you can also use your own custom tab bar or position the tab bar at...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found