Use the native MaterialButtonToggleGroup
API for modern tabbed bars in Titanium.
- Titanium SDK 9.3.0+ (because it's a
material-components
API)
const tabbedBar = require('ti.tabbedBar').createTabbedBar({
labels: [ 'Option 1', 'Option 2', 'Option 3' ],
index: 1
});
MIT
Hans Knöchel