Tier E1

RN-universal Tabs pilot

Scaffolded

Context-driven tab switcher. Root holds the active value; triggers and contents read it via context. accessibilityRole='tablist' + 'tab' + role='tabpanel' — screen readers announce the relationship between trigger and panel.

Side-by-side: controlled

shadcn (Radix)
1,284 active students · 92% attendance this week.
RN
1,284 active students · 92% attendance this week.

Shared state — both surfaces react to the same active tab.

Defaults + disabled

Week view data — default selection.

Semantics

AspectshadcnRNNotes
RootRadix Roottransparent <View>Just a provider
Listrole="tablist"accessibilityRole="tablist"Same
Triggerrole="tab"accessibilityRole="tab"Plus aria-selected on RN Web
Contentrole="tabpanel"role="tabpanel"aria-labelledby trigger id, both ways
forceMountRadix propforceMount propMounts inactive content hidden — for animations